* test/ruby/test_module.rb: should not expect a method table ordering.

[Feature #11414]



git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@51482 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
ko1 2015-08-04 07:41:32 +00:00
Родитель 6ed8d39de0
Коммит 91f209816f
2 изменённых файлов: 8 добавлений и 3 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Tue Aug 4 16:40:26 2015 Koichi Sasada <ko1@atdot.net>
* test/ruby/test_module.rb: should not expect a method table ordering.
[Feature #11414]
Tue Aug 04 15:30:04 2015 Koichi Sasada <ko1@atdot.net>
* proc.c (rb_block_clear_env_self): clear by Qfalse intead of Qnil.

Просмотреть файл

@ -1114,13 +1114,13 @@ class TestModule < Test::Unit::TestCase
assert_equal [:f], memo.shift, '[ruby-core:25536]'
assert_equal mod.instance_method(:f), memo.shift
assert_equal :g, memo.shift
assert_equal [:f, :g], memo.shift
assert_equal [:f, :g].sort, memo.shift.sort
assert_equal mod.instance_method(:f), memo.shift
assert_equal :a, memo.shift
assert_equal [:f, :g, :a], memo.shift
assert_equal [:f, :g, :a].sort, memo.shift.sort
assert_equal mod.instance_method(:a), memo.shift
assert_equal :a=, memo.shift
assert_equal [:f, :g, :a, :a=], memo.shift
assert_equal [:f, :g, :a, :a=].sort, memo.shift.sort
assert_equal mod.instance_method(:a=), memo.shift
end