Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions test_unit.rb
Original file line number Diff line number Diff line change
Expand Up @@ -19,11 +19,11 @@ def teardown
def test_fail
assert_equal(4, 4);
assert_equal(4, 4);
#fail('Not implemented')
fail('Not implemented')
end

def test_foo
assert_equal(4, 4);
assert_equal(4, 3);
assert_equal(2, 2)
end
end
Expand All @@ -32,7 +32,7 @@ class TestUnit2 < Test::Unit::TestCase

# Fake test
def test_x
assert_equal(3,3)
assert_equal(2,3)
end

end
6 changes: 3 additions & 3 deletions test_unit2.rb
Original file line number Diff line number Diff line change
Expand Up @@ -18,19 +18,19 @@ def teardown
# Fake test
def test_fail

#fail('Not implemented')
fail('Not implemented')
end

def test_foo
assert_equal(2, 2)
assert_equal(2, 3)
end
end

class TestUnit4 < Test::Unit::TestCase

# Fake test
def test_x
assert_equal(3,3)
assert_equal(1,3)
end

end