summaryrefslogtreecommitdiff
path: root/jni/ruby/test/rdoc/test_rdoc_markup_heading.rb
diff options
context:
space:
mode:
authorJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-16 18:49:26 +0900
committerJari Vetoniemi <jari.vetoniemi@indooratlas.com>2020-03-30 00:39:06 +0900
commitfcbf63e62c627deae76c1b8cb8c0876c536ed811 (patch)
tree64cb17de3f41a2b6fef2368028fbd00349946994 /jni/ruby/test/rdoc/test_rdoc_markup_heading.rb
Fresh start
Diffstat (limited to 'jni/ruby/test/rdoc/test_rdoc_markup_heading.rb')
-rw-r--r--jni/ruby/test/rdoc/test_rdoc_markup_heading.rb29
1 files changed, 29 insertions, 0 deletions
diff --git a/jni/ruby/test/rdoc/test_rdoc_markup_heading.rb b/jni/ruby/test/rdoc/test_rdoc_markup_heading.rb
new file mode 100644
index 0000000..26d4b5b
--- /dev/null
+++ b/jni/ruby/test/rdoc/test_rdoc_markup_heading.rb
@@ -0,0 +1,29 @@
+require 'rdoc/test_case'
+
+class TestRDocMarkupHeading < RDoc::TestCase
+
+ def setup
+ super
+
+ @h = RDoc::Markup::Heading.new 1, 'Hello *Friend*!'
+ end
+
+ def test_aref
+ assert_equal 'label-Hello+Friend-21', @h.aref
+ end
+
+ def test_label
+ assert_equal 'label-Hello+Friend-21', @h.label
+ assert_equal 'label-Hello+Friend-21', @h.label(nil)
+
+ context = RDoc::NormalClass.new 'Foo'
+
+ assert_equal 'class-Foo-label-Hello+Friend-21', @h.label(context)
+ end
+
+ def test_plain_html
+ assert_equal 'Hello <strong>Friend</strong>!', @h.plain_html
+ end
+
+end
+