1
0
Fork 0
mirror of https://github.com/ruby/ruby.git synced 2022-11-09 12:17:21 -05:00

options.rb: include root for out-place build

* lib/rdoc/options.rb (RDoc#finish): include root path in include
  paths, to work in another directory than the source directory.
  [ruby-core:56282] [Bug #8712]

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@42300 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
nobu 2013-07-31 19:06:21 +00:00
parent 3d562b6873
commit 835c555f7f
4 changed files with 28 additions and 1 deletions

View file

@ -162,6 +162,26 @@ class TestRDocRDoc < RDoc::TestCase
end
end
def test_parse_file_include_root
@rdoc.store = RDoc::Store.new
top_level = nil
temp_dir do |dir|
@rdoc.options.parse %W[--root #{File.dirname(__FILE__)}]
open 'include.txt', 'w' do |io|
io.puts ':include: test.txt'
end
out, err = capture_io do
top_level = @rdoc.parse_file 'include.txt'
end
assert_empty out
assert_empty err
end
assert_equal "test file", top_level.comment.text
end
def test_parse_file_page_dir
@rdoc.store = RDoc::Store.new