We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0d742cf commit 1b5d57bCopy full SHA for 1b5d57b
test/test_rdoc_rdoc.rb
@@ -51,11 +51,21 @@ def test_document_with_dry_run # functional test
51
52
rdoc = RDoc::RDoc.new
53
54
+ out = nil
55
temp_dir do
- capture_io do
56
+ out, = capture_io do
57
rdoc.document options
58
end
59
+
60
+ refute File.directory? 'doc'
61
+ assert_equal rdoc, rdoc.store.rdoc
62
63
+ assert_includes out, '100%'
64
65
+ store = rdoc.store
66
67
+ assert_equal 'MAIN_PAGE.rdoc', store.main
68
+ assert_equal 'title', store.title
69
70
71
def test_gather_files
0 commit comments