Files
CPM.cmake/test/integration/test_a_lib.rb

21 lines
295 B
Ruby
Raw Normal View History

2022-01-13 05:16:51 +02:00
require_relative './lib'
# Tests and experiments with the integration test framework itself
class ALib < IntegrationTest
def test_zza
f = -> {
assert_equal 2, 2
}
f.()
end
def test_b
test_foo('xxx')
end
def test_foo(xxx)
assert_equal 'xxx', xxx
end
end