1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

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