aboutsummaryrefslogtreecommitdiffstats
path: root/test/lib/minitest/hell.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/lib/minitest/hell.rb')
-rw-r--r--test/lib/minitest/hell.rb20
1 files changed, 20 insertions, 0 deletions
diff --git a/test/lib/minitest/hell.rb b/test/lib/minitest/hell.rb
new file mode 100644
index 0000000000..827bf0e320
--- /dev/null
+++ b/test/lib/minitest/hell.rb
@@ -0,0 +1,20 @@
+# encoding: utf-8
+######################################################################
+# This file is imported from the minitest project.
+# DO NOT make modifications in this repo. They _will_ be reverted!
+# File a patch instead and assign it to Ryan Davis.
+######################################################################
+
+require "minitest/parallel_each"
+
+# :stopdoc:
+class Minitest::Unit::TestCase
+ class << self
+ alias :old_test_order :test_order
+
+ def test_order
+ :parallel
+ end
+ end
+end
+# :startdoc: