diff options
author | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-04-17 08:26:20 +0000 |
---|---|---|
committer | mame <mame@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2018-04-17 08:26:20 +0000 |
commit | 84934e4f2401a003cad597d3ea0e856bbf2d31f8 (patch) | |
tree | 923b6654c9cd5ffb9d40d1eee8441a091abdf29d | |
parent | 035145722d90472114af3ebdaad870be0b16dbc7 (diff) |
Enable the assertions that had been disabled for historical reason
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@63177 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r-- | test/ruby/test_assignment.rb | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/test/ruby/test_assignment.rb b/test/ruby/test_assignment.rb index 7da4d3451c..c1f8c46890 100644 --- a/test/ruby/test_assignment.rb +++ b/test/ruby/test_assignment.rb @@ -480,11 +480,10 @@ class TestAssignment < Test::Unit::TestCase assert_equal 1, a assert_equal [2, 3], b - # not supported yet - #a, *b, c = 1, 2, 3, 4 - #assert_equal 1, a - #assert_equal [2,3], b - #assert_equal 4, c + a, *b, c = 1, 2, 3, 4 + assert_equal 1, a + assert_equal [2,3], b + assert_equal 4, c a = 1, 2 assert_equal [1, 2], a |