summaryrefslogtreecommitdiff
path: root/tool/lib/test/unit/testcase.rb
diff options
context:
space:
mode:
authorKoichi Sasada <ko1@atdot.net>2020-02-27 10:49:14 +0900
committerKoichi Sasada <ko1@atdot.net>2020-02-28 17:44:23 +0900
commit28399e4e0f8036b03d7e626b0071de0f59ac7bc0 (patch)
treed6591721d6775f80331055dbe98e7890d0a1fd28 /tool/lib/test/unit/testcase.rb
parent9bede6e942e7726d320d734fead741672d060625 (diff)
respect --test-order=random
Now --test-order=random is simply ignored. This patch respect this option.
Notes
Notes: Merged: https://github.com/ruby/ruby/pull/2932
Diffstat (limited to 'tool/lib/test/unit/testcase.rb')
-rw-r--r--tool/lib/test/unit/testcase.rb4
1 files changed, 0 insertions, 4 deletions
diff --git a/tool/lib/test/unit/testcase.rb b/tool/lib/test/unit/testcase.rb
index 58cfbcab99..68149a4880 100644
--- a/tool/lib/test/unit/testcase.rb
+++ b/tool/lib/test/unit/testcase.rb
@@ -18,10 +18,6 @@ module Test
super runner
end
- def self.test_order
- :sorted
- end
-
def self.method_added(name)
super
return unless name.to_s.start_with?("test_")