1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00
ruby--ruby/test/testunit/tests_for_parallel/ptest_third.rb

12 lines
223 B
Ruby
Raw Normal View History

# frozen_string_literal: false
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