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

* lib/test/unit.rb: sort the order of executing tests.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@19809 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
mame 2008-10-16 15:40:49 +00:00
parent c69e178f0c
commit 978f8ca10a
2 changed files with 7 additions and 0 deletions

View file

@ -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.

View file

@ -152,6 +152,9 @@ EOT
class TestCase < MiniTest::Unit::TestCase
include Assertions
def self.test_order
:sorted
end
end
end
end