summaryrefslogtreecommitdiff
path: root/test/rdoc/test_rdoc_rd_inline_parser.rb
diff options
context:
space:
mode:
Diffstat (limited to 'test/rdoc/test_rdoc_rd_inline_parser.rb')
-rw-r--r--test/rdoc/test_rdoc_rd_inline_parser.rb7
1 files changed, 6 insertions, 1 deletions
diff --git a/test/rdoc/test_rdoc_rd_inline_parser.rb b/test/rdoc/test_rdoc_rd_inline_parser.rb
index 6b6c00f886..6f8c9557c4 100644
--- a/test/rdoc/test_rdoc_rd_inline_parser.rb
+++ b/test/rdoc/test_rdoc_rd_inline_parser.rb
@@ -26,7 +26,8 @@ class TestRDocRdInlineParser < RDoc::TestCase
assert_equal '{*1}[rdoc-label:foottext-1:footmark-1]', parse('((-text-))')
expected = [
- @RM::Paragraph.new('{^1}[rdoc-label:footmark-1:foottext-1]', 'text')
+ @RM::Paragraph.new('{^1}[rdoc-label:footmark-1:foottext-1]', ' ', 'text'),
+ blank_line,
]
assert_equal expected, @block_parser.footnotes
@@ -161,6 +162,10 @@ class TestRDocRdInlineParser < RDoc::TestCase
assert_equal '<tt>text "</tt>', parse("(('text \\\"'))")
end
+ def test_parse_verb_emphasis
+ assert_equal '<tt>((*emphasis*))</tt>', parse("(('((*emphasis*))'))")
+ end
+
def test_parse_verb_multiple
assert_equal '<tt>((*text*))</tt>', parse("(('((*text*))'))")
end