From 3d562b6873384098fb8e7ec375f36f3bf246b6c9 Mon Sep 17 00:00:00 2001 From: nobu Date: Wed, 31 Jul 2013 19:05:17 +0000 Subject: 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 --- test/rdoc/test_rdoc_markup_pre_process.rb | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) (limited to 'test/rdoc') 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 -- cgit v1.2.3