Files
CPM.cmake/test/integration/test_noop.rb
2022-01-10 07:47:17 +02:00

11 lines
199 B
Ruby

# this test does nothing
# it's, in a way, a test of the integration testing framework
class Noop < Test::Unit::TestCase
def test_tt
puts 'run'
assert true
assert_equal 1, 1
end
end