diff --git a/ChangeLog b/ChangeLog index 930b5ebe96..5ddd1eefc5 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +Thu Aug 1 04:05:06 2013 Nobuyoshi Nakada + + * 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 * bignum.c (big2str_karatsuba): Fix a condition of power_level. diff --git a/test/rdoc/test_rdoc_markup_pre_process.rb b/test/rdoc/test_rdoc_markup_pre_process.rb index 3a991a6397..82ab71ee14 100644 --- a/test/rdoc/test_rdoc_markup_pre_process.rb +++ b/test/rdoc/test_rdoc_markup_pre_process.rb @@ -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