These tests are already passed

This commit is contained in:
Takashi Kokubun 2015-10-24 01:55:19 +09:00
parent fa2e037da4
commit 473c55f7ba
1 changed files with 2 additions and 2 deletions

View File

@ -309,11 +309,11 @@ HAML
assert_equal("<p>Foo &amp; Bar & Baz</p>\n", render('%p& Foo #{"&"} Bar & Baz'))
end
def test_nil_tag_value_should_render_as_empty; skip # nil script
def test_nil_tag_value_should_render_as_empty
assert_equal("<p></p>\n", render("%p= nil"))
end
def test_tag_with_failed_if_should_render_as_empty; skip # nil script
def test_tag_with_failed_if_should_render_as_empty
assert_equal("<p></p>\n", render("%p= 'Hello' if false"))
end