diff options
author | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-09 15:01:53 +0000 |
---|---|---|
committer | dave <dave@b2dd03c8-39d4-4d8f-98ff-823fe69b080e> | 2004-04-09 15:01:53 +0000 |
commit | 5c2e1f27a9111dd3603f4470d15bca5f4d6478be (patch) | |
tree | 02162287d008c2145a5ce5be9b3a328005e9fd24 /lib/rdoc/markup/test | |
parent | 40cb3c20d3592febe3cfc0a64bfb898fdd1284fc (diff) | |
download | ruby-5c2e1f27a9111dd3603f4470d15bca5f4d6478be.tar.gz ruby-5c2e1f27a9111dd3603f4470d15bca5f4d6478be.tar.xz ruby-5c2e1f27a9111dd3603f4470d15bca5f4d6478be.zip |
Fixed problem with \_cat_<b>dog</b>
git-svn-id: http://svn.ruby-lang.org/repos/ruby/trunk@6131 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
Diffstat (limited to 'lib/rdoc/markup/test')
-rw-r--r-- | lib/rdoc/markup/test/TestInline.rb | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lib/rdoc/markup/test/TestInline.rb b/lib/rdoc/markup/test/TestInline.rb index c76f21dce..a067d4c24 100644 --- a/lib/rdoc/markup/test/TestInline.rb +++ b/lib/rdoc/markup/test/TestInline.rb @@ -141,6 +141,9 @@ class TestInline < Test::Unit::TestCase @am.flow("cat <i>and</i> \\<B>dog</b>")) assert_equal(["*word* or <b>text</b>"], @am.flow("\\*word* or \\<b>text</b>")) + + assert_equal(["_cat_", @em_on, "dog", @em_off], + @am.flow("\\_cat_<i>dog</i>")) end def test_adding |