Files
CPM.cmake/test/integration/test_a_lib.rb
Borislav Stanimirov 8ba308cdba Small source_cache test
2022-01-13 05:16:51 +02:00

21 lines
295 B
Ruby

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