We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c60db09 commit 133bbe3Copy full SHA for 133bbe3
1 file changed
test/rdoc/rdoc_options_test.rb
@@ -697,6 +697,15 @@ def test_parse_visibility
697
assert_equal :nodoc, @options.visibility
698
end
699
700
+ def test_parse_verbose
701
+ @options.parse %w[--verbose]
702
+ assert_equal 2, @options.verbosity
703
+
704
+ @options = RDoc::Options.new
705
+ @options.parse %w[-V]
706
707
+ end
708
709
def test_parse_write_options
710
tmpdir = File.join Dir.tmpdir, "test_rdoc_options_#{$$}"
711
FileUtils.mkdir_p tmpdir
0 commit comments