From ccd7a805cc4ceb274ece6ba519fa233ed8d210c2 Mon Sep 17 00:00:00 2001 From: naruse Date: Tue, 6 Nov 2012 05:30:17 +0000 Subject: * lib/net/protocol.rb (Net::InternetMessageIO#each_crlf_line): don't use /n in universal regexp. [ruby-dev:46394] [Bug #7278] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@37487 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/net/protocol/test_protocol.rb | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 test/net/protocol/test_protocol.rb (limited to 'test/net/protocol') diff --git a/test/net/protocol/test_protocol.rb b/test/net/protocol/test_protocol.rb new file mode 100644 index 0000000000..5fe3023015 --- /dev/null +++ b/test/net/protocol/test_protocol.rb @@ -0,0 +1,11 @@ +require "test/unit" +require "net/protocol" +require "stringio" + +class TestProtocol < Test::Unit::TestCase + def test_each_crlf_line + assert_output('', '') do + Net::InternetMessageIO.new(StringIO.new("")).write_message("\u3042\r\n\u3044\r\n\u3046") + end + end +end -- cgit v1.2.3