Sha256: 3ca6da4170738dac994e73234a3f27001acbc4dd84e191af530f430ba2b44836
Contents?: true
Size: 490 Bytes
Versions: 57
Compression:
Stored size: 490 Bytes
Contents
$:.push File.join(File.dirname(__FILE__), *%w[.. .. .. lib]) require 'test/unit' require 'spec' require 'spec/interop/test' class MySpec < 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
57 entries across 57 versions & 10 rubygems