Fix test that wasn't running at all.

This commit is contained in:
Emilio Tagua
2010-09-28 18:48:58 -03:00
parent d5bb640eb0
commit 623ef13b77

View File

@@ -55,7 +55,7 @@ class TagNodeTest < Test::Unit::TestCase
def test_to_s
node = tag("<a b=c d='f' g=\"h 'i'\" />")
assert_equal %(<a b='c' d='f' g='h \\'i\\'' />), node.to_s
assert_equal %(<a b="c" d="f" g="h 'i'" />), node.to_s
end
def test_tag