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

* lib/optparse.rb (OptionParser#to_a): split for each lines.

[ruby-dev:45568][Bug #6348]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@35467 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2012-04-24 20:46:14 +00:00
parent a06cddb466
commit 3c2f707f16
3 changed files with 7 additions and 2 deletions

View file

@ -33,6 +33,6 @@ class TestOptionParser::SummaryTest < TestOptionParser
def test_summary
o = OptionParser.new("foo\nbar")
assert_equal("foo\nbar\n", o.to_s)
assert_equal(["foo", "bar"], o.to_a)
assert_equal(["foo\n", "bar"], o.to_a)
end
end