summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authormame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-16 15:40:49 +0000
committermame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-10-16 15:40:49 +0000
commit6666d69acfebffc58c4a55a2f518e5a5e4d95eed (patch)
tree789ad85c39dfa62fe79333e9be7b1d4adb45a00c
parentea745346dd0d71dab7b8dbe42962437754c4a164 (diff)
downloadruby-6666d69acfebffc58c4a55a2f518e5a5e4d95eed.tar.gz
ruby-6666d69acfebffc58c4a55a2f518e5a5e4d95eed.tar.xz
ruby-6666d69acfebffc58c4a55a2f518e5a5e4d95eed.zip
* lib/test/unit.rb: sort the order of executing tests.
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@19809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/test/unit.rb3
2 files changed, 7 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 304c32592..877a7dff5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Fri Oct 17 00:39:19 2008 Yusuke Endoh <mame@tsg.ne.jp>
+
+ * lib/test/unit.rb: sort the order of executing tests.
+
Fri Oct 17 00:24:15 2008 Tanaka Akira <akr@fsij.org>
* io.c (rb_io_binmode): reset encoding conversion.
diff --git a/lib/test/unit.rb b/lib/test/unit.rb
index 14ddc08f2..d81a11163 100644
--- a/lib/test/unit.rb
+++ b/lib/test/unit.rb
@@ -152,6 +152,9 @@ EOT
class TestCase < MiniTest::Unit::TestCase
include Assertions
+ def self.test_order
+ :sorted
+ end
end
end
end