mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
11 lines
223 B
Ruby
11 lines
223 B
Ruby
# 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
|