summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_markup_to_table_of_contents.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rdoc/test_rdoc_markup_to_table_of_contents.rb')
-rw-r--r--test/rdoc/test_rdoc_markup_to_table_of_contents.rb31
1 files changed, 31 insertions, 0 deletions
diff --git a/test/rdoc/test_rdoc_markup_to_table_of_contents.rb b/test/rdoc/test_rdoc_markup_to_table_of_contents.rb
index fd0be746d8..ba17b845a7 100644
--- a/test/rdoc/test_rdoc_markup_to_table_of_contents.rb
+++ b/test/rdoc/test_rdoc_markup_to_table_of_contents.rb
@@ -91,5 +91,36 @@ class TestRDocMarkupToTableOfContents < RDoc::Markup::FormatterTestCase
alias list_verbatim empty
alias start_accepting empty
+ def test_accept_document_omit_headings_below
+ document = doc
+ document.omit_headings_below = 2
+
+ @to.accept_document document
+
+ assert_equal 2, @to.omit_headings_below
+ end
+
+ def test_accept_heading_suppressed
+ @to.start_accepting
+ @to.omit_headings_below = 4
+
+ suppressed = head 5, 'Hello'
+
+ @to.accept_heading suppressed
+
+ assert_empty @to.res
+ end
+
+ def test_suppressed_eh
+ @to.omit_headings_below = nil
+
+ refute @to.suppressed? head(1, '')
+
+ @to.omit_headings_below = 1
+
+ refute @to.suppressed? head(1, '')
+ assert @to.suppressed? head(2, '')
+ end
+
end