summaryrefslogtreecommitdiff
path: root/test/testunit/tests_for_parallel/ptest_forth.rb
blob: c778a2ecc95f0f00ad03f983566f3dcdc9b5ca81 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
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