From fcbf63e62c627deae76c1b8cb8c0876c536ed811 Mon Sep 17 00:00:00 2001 From: Jari Vetoniemi Date: Mon, 16 Mar 2020 18:49:26 +0900 Subject: Fresh start --- jni/ruby/test/rdoc/test_rdoc_markup_heading.rb | 29 ++++++++++++++++++++++++++ 1 file changed, 29 insertions(+) create mode 100644 jni/ruby/test/rdoc/test_rdoc_markup_heading.rb (limited to 'jni/ruby/test/rdoc/test_rdoc_markup_heading.rb') 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 Friend!', @h.plain_html + end + +end + -- cgit v1.2.3