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:
parent
d5bb640eb0
commit
623ef13b77
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue