Sha256: 9562a6a0ccf70de4a02c927da59626fb37c09b9a5ae88e3911b53426a26e8418
Contents?: true
Size: 487 Bytes
Versions: 15
Compression:
Stored size: 487 Bytes
Contents
$:.push File.join(File.dirname(__FILE__), *%w[.. .. lib]) require 'test/unit' require 'spec' require 'spec/interop/test' class MyTest < Test::Unit::TestCase def should_pass_with_should 1.should == 1 end def should_fail_with_should 1.should == 2 end def should_pass_with_assert assert true end def should_fail_with_assert assert false end def test raise "This is not a real test" end def test_ify raise "This is a real test" end end
Version data entries
15 entries across 15 versions & 5 rubygems