summaryrefslogtreecommitdiff
path: root/test/testunit/tests_for_parallel/ptest_third.rb
blob: 338fc32a917e1e27ab1dd92823c044b20e9bc95e (plain)
1
2
3
4
5
6
7
8
9
10
require 'test/unit'

class TestD < Test::Unit::TestCase
  def test_fail_at_worker
    #if /test\/unit\/parallel\.rb/ =~ $0
    if on_parallel_worker?
      assert_equal(0,1)
    end
  end
end