mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
17 lines
209 B
Ruby
17 lines
209 B
Ruby
|
require 'test/unit'
|
||
|
|
||
|
class TestE < Test::Unit::TestCase
|
||
|
def test_not_fail
|
||
|
assert_equal(1,1)
|
||
|
end
|
||
|
|
||
|
def test_always_skip
|
||
|
skip "always"
|
||
|
end
|
||
|
|
||
|
def test_always_fail
|
||
|
assert_equal(0,1)
|
||
|
end
|
||
|
end
|
||
|
|