aboutsummaryrefslogtreecommitdiffstats
path: root/test/rdoc/test_rdoc_markup_pre_process.rb
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-06 05:38:11 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-06-06 05:38:11 +0000
commitf4e499de6cf0708e5982e905fac24f33f4e1b58e (patch)
tree8a2ab5a4c709362f931cd3623a6637fcaa6ab155 /test/rdoc/test_rdoc_markup_pre_process.rb
parent3c9e6c7abb6c4029f9e610321f49f1b4ddcd80b9 (diff)
downloadruby-f4e499de6cf0708e5982e905fac24f33f4e1b58e.tar.gz
* test/rdoc/test_rdoc_markup_pre_process.rb (TestRDocMarkupPreProcess#
{test_include_file,test_include_file_encoding_incompatible}): no need to write such workaround. don't hide the bug of ruby (and the bug is already fixed). git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@31937 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc/test_rdoc_markup_pre_process.rb')
-rw-r--r--test/rdoc/test_rdoc_markup_pre_process.rb10
1 files changed, 0 insertions, 10 deletions
diff --git a/test/rdoc/test_rdoc_markup_pre_process.rb b/test/rdoc/test_rdoc_markup_pre_process.rb
index 0d2e8565be..9fff53df77 100644
--- a/test/rdoc/test_rdoc_markup_pre_process.rb
+++ b/test/rdoc/test_rdoc_markup_pre_process.rb
@@ -40,11 +40,6 @@ Regular expressions (<i>regexp</i>s) are patterns which describe the
contents of a string.
EXPECTED
- # FIXME 1.9 fix on windoze
- # preprocessor uses binread, so line endings are \r\n
- expected.gsub!("\n", "\r\n") if
- RUBY_VERSION =~ /^1.9/ && RUBY_PLATFORM =~ /mswin|mingw/
-
assert_equal expected, content
end
@@ -64,11 +59,6 @@ contents of a string.
expected = "?\n"
- # FIXME 1.9 fix on windoze
- # preprocessor uses binread, so line endings are \r\n
- expected.gsub!("\n", "\r\n") if
- RUBY_VERSION =~ /^1.9/ && RUBY_PLATFORM =~ /mswin|mingw/
-
assert_equal expected, content
end