From acda9a6872c4b46be760605ad562658378da37dc Mon Sep 17 00:00:00 2001 From: usa Date: Wed, 9 Feb 2011 00:47:42 +0000 Subject: * test/rdoc/test_rdoc_encoding.rb: remove unnecessary (and wrong) platform-dependent hacks. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@30829 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rdoc/test_rdoc_encoding.rb | 12 ------------ 1 file changed, 12 deletions(-) (limited to 'test') diff --git a/test/rdoc/test_rdoc_encoding.rb b/test/rdoc/test_rdoc_encoding.rb index f6c113affc..178f805129 100644 --- a/test/rdoc/test_rdoc_encoding.rb +++ b/test/rdoc/test_rdoc_encoding.rb @@ -26,9 +26,6 @@ class TestRDocEncoding < MiniTest::Unit::TestCase @tempfile.write expected @tempfile.flush - # FIXME 1.9 fix on windoze - expected.gsub!("\n", "\r\n") if RUBY_VERSION =~ /^1.9/ && RUBY_PLATFORM =~ /mswin|mingw/ - contents = RDoc::Encoding.read_file @tempfile.path, Encoding::UTF_8 assert_equal "hi everybody", contents assert_equal Encoding::UTF_8, contents.encoding @@ -55,9 +52,6 @@ class TestRDocEncoding < MiniTest::Unit::TestCase @tempfile.write "# coding: utf-8\n\317\200" # pi @tempfile.flush - # FIXME 1.9 fix on windoze - expected.gsub!("\n", "\r\n") if RUBY_VERSION =~ /^1.9/ && RUBY_PLATFORM =~ /mswin|mingw/ - contents = :junk _, err = capture_io do @@ -78,9 +72,6 @@ class TestRDocEncoding < MiniTest::Unit::TestCase @tempfile.write expected @tempfile.flush - # FIXME 1.9 fix on windoze - expected.gsub!("\n", "\r\n") if RUBY_VERSION =~ /^1.9/ && RUBY_PLATFORM =~ /win32|mingw32/ - contents = RDoc::Encoding.read_file @tempfile.path, Encoding::UTF_8 assert_equal "hi everybody", contents assert_equal Encoding::UTF_8, contents.encoding @@ -92,9 +83,6 @@ class TestRDocEncoding < MiniTest::Unit::TestCase @tempfile.write "# coding: utf-8\n\317\200" # pi @tempfile.flush - # FIXME 1.9 fix on windoze - expected.gsub!("\n", "\r\n") if RUBY_VERSION =~ /^1.9/ && RUBY_PLATFORM =~ /mswin|mingw/ - contents = RDoc::Encoding.read_file @tempfile.path, Encoding::US_ASCII, true assert_equal '?', contents -- cgit v1.2.3