Alternative approach. Using ruby's test/unit

This commit is contained in:
Borislav Stanimirov
2022-01-10 07:47:17 +02:00
parent dbb018ef6b
commit 57386e73e8
5 changed files with 166 additions and 120 deletions

View File

@@ -0,0 +1,10 @@
# 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