test_rdoc_markup_pre_process.rb: input tempfile

* test/test_rdoc_markup_pre_process.rb (TestRDocMarkupPreProcess#setup):
  fix input_file_name, as the test script is not pre-processed.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42299 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-07-31 19:05:17 +00:00
Родитель eed6c15a21
Коммит 3d562b6873
2 изменённых файлов: 18 добавлений и 1 удалений

Просмотреть файл

@ -1,3 +1,8 @@
Thu Aug 1 04:05:06 2013 Nobuyoshi Nakada <nobu@ruby-lang.org>
* test/test_rdoc_markup_pre_process.rb (TestRDocMarkupPreProcess#setup):
fix input_file_name, as the test script is not pre-processed.
Thu Aug 1 01:45:18 2013 Tanaka Akira <akr@fsij.org>
* bignum.c (big2str_karatsuba): Fix a condition of power_level.

Просмотреть файл

@ -11,7 +11,7 @@ class TestRDocMarkupPreProcess < RDoc::TestCase
@file_name = File.basename @tempfile.path
@dir = File.dirname @tempfile.path
@pp = RDoc::Markup::PreProcess.new __FILE__, [@dir]
@pp = RDoc::Markup::PreProcess.new @tempfile.path, [@dir, File.dirname(__FILE__)]
end
def teardown
@ -72,6 +72,18 @@ contents of a string.
assert_equal expected, content
end
def test_include_file_in_other_directory
content = nil
out, err = capture_io do
content = @pp.include_file "test.txt", '', nil
end
assert_empty out
assert_empty err
assert_equal "test file\n", content
end
def test_handle
text = "# :main: M\n"
out = @pp.handle text