summaryrefslogtreecommitdiff
path: root/test/rdoc
diff options
context:
space:
mode:
authorusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-30 00:13:02 +0000
committerusa <usa@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2011-11-30 00:13:02 +0000
commit434a5f93adc435207aa0c2074558646753766a4d (patch)
tree90e9071996398e412b96eef00151e95585dc2a76 /test/rdoc
parentb62aadf0ddc080a1c3456bfa43227a9660819d2f (diff)
* lib/rdoc/encoding.rb (RDoc::Encoding.read_file): fixup newline chars
on Windows. see https://github.com/rdoc/rdoc/issues/87 * test/rdoc/test_rdoc_markup_pre_process.rb (TestRDocMarkupPreProcess#test_include_file, TestRDocMarkupPreProcess#test_include_file_encoding_incompatible): follow above change. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@33902 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'test/rdoc')
-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 9a0a302b3e..34867c8c6b 100644
--- a/test/rdoc/test_rdoc_markup_pre_process.rb
+++ b/test/rdoc/test_rdoc_markup_pre_process.rb
@@ -43,11 +43,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.3" && RUBY_PLATFORM =~ /mswin|mingw/
-
assert_equal expected, content
end
@@ -67,11 +62,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.3" && RUBY_PLATFORM =~ /mswin|mingw/
-
assert_equal expected, content
end