From bcd4deb6c5eb37e0389997ded4ed3e123cdefbc1 Mon Sep 17 00:00:00 2001 From: drbrain Date: Tue, 12 Feb 2008 23:59:03 +0000 Subject: Allow inline markup to have a leading '#' or '\', or trailing punctuation. i.e. *#freeze?*, *\foo?*. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@15454 b2dd03c8-39d4-4d8f-98ff-823fe69b080e --- test/rdoc/test_rdoc_markup.rb | 14 ++++++++++++++ test/rdoc/test_rdoc_markup_attribute_manager.rb | 11 +++++++++++ 2 files changed, 25 insertions(+) (limited to 'test/rdoc') diff --git a/test/rdoc/test_rdoc_markup.rb b/test/rdoc/test_rdoc_markup.rb index e0a1df4a04..d88743858a 100644 --- a/test/rdoc/test_rdoc_markup.rb +++ b/test/rdoc/test_rdoc_markup.rb @@ -334,6 +334,20 @@ class TestRDocMarkup < Test::Unit::TestCase "L1: ListEnd\n" ]) end + def test_list_nested_number_number + str = "1. one\n1. two\n 1. cat\n 1. dog" + + line_groups(str, + [ "L1: ListStart\n", + "L1: NUMBER ListItem\none", + "L1: NUMBER ListItem\ntwo", + "L2: ListStart\n", + "L2: NUMBER ListItem\ncat", + "L2: NUMBER ListItem\ndog", + "L2: ListEnd\n", + "L1: ListEnd\n" ]) + end + def test_list_number str = "1. one\n2. two\n1. three" diff --git a/test/rdoc/test_rdoc_markup_attribute_manager.rb b/test/rdoc/test_rdoc_markup_attribute_manager.rb index 7dcce4590a..8e66b6b936 100644 --- a/test/rdoc/test_rdoc_markup_attribute_manager.rb +++ b/test/rdoc/test_rdoc_markup_attribute_manager.rb @@ -82,6 +82,17 @@ class TestRDocMarkupAttributeManager < Test::Unit::TestCase end + def test_bold + assert_equal [@bold_on, 'bold', @bold_off], + @am.flow("*bold*") + + assert_equal [@bold_on, 'Bold:', @bold_off], + @am.flow("*Bold:*") + + assert_equal [@bold_on, '\\bold', @bold_off], + @am.flow("*\\bold*") + end + def test_combined assert_equal(["cat ", @em_on, "and", @em_off, " ", @bold_on, "dog", @bold_off], @am.flow("cat _and_ *dog*")) -- cgit v1.2.3