Sha256: a6df64991604c5742ecf8bae9f28d7dccc1f2fffcd471d1d433410c2fa2a5204

Contents?: true

Size: 613 Bytes

Versions: 26

Compression:

Stored size: 613 Bytes

Contents

class SampleCase1 < Test::Unit::TestCase
  def test_sample_pass1
    assert_equal(1,1)
  end
  def test_sample_pass2
    assert_equal(2,2)
  end

  def test_sample_fail1
    assert_equal(1,2)
  end
  def test_sample_fail2
    assert_include(1,[])
  end

  def test_sample_error1
    raise StandardError, "Raised exception!"
  end
  def test_sample_error2
    raise StandardError, "Raised another exception!"
  end
end


class SampleCase2 < Test::Unit::TestCase
  def test_sample_pass1
    assert_equal(1,1)
  end
  def test_sample_pass2
    assert_equal(1,1)
  end
end

class EmptyCase < Test::Unit::TestCase
end

Version data entries

26 entries across 26 versions & 6 rubygems

Version Path
arcabouco-0.2.13 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
turn-0.9.7 try/test_sample.rb
challah-1.0.0 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
swipe-rails-0.0.5 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-1.0.0.beta3 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-1.0.0.beta2 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-1.0.0.beta vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-0.9.1.beta.3 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-0.9.1.beta vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-0.9.0 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-rolls-0.2.0 vendor/bundle/gems/challah-0.8.3/vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
challah-0.8.3 vendor/bundle/gems/turn-0.9.6/try/test_sample.rb
turn-0.9.6 try/test_sample.rb
challah-0.6.1 vendor/bundle/gems/turn-0.9.5/try/test_sample.rb
challah-0.6.0 vendor/bundle/gems/turn-0.9.5/try/test_sample.rb
turn-0.9.5 try/test_sample.rb
turn-0.9.4 try/test_sample.rb
turn-0.9.3 try/test_sample.rb
turn-0.9.2 try/test_sample.rb
turn-0.9.1 try/test_sample.rb