mirror of
https://github.com/rails/rails.git
synced 2022-11-09 12:12:34 -05:00
We are trying to test that & escapes here not that & is being escaped, also added a cosmetic change to test_link_tag_with_query_and_no_name
Signed-off-by: Jeremy Kemper <jeremy@bitsweat.net>
This commit is contained in:
parent
68bd46ffb9
commit
7bd00fcb7f
1 changed files with 2 additions and 3 deletions
|
@ -135,13 +135,12 @@ class UrlHelperTest < ActiveSupport::TestCase
|
|||
|
||||
def test_link_tag_with_query
|
||||
expected = %{<a href="http://www.example.com?q1=v1&q2=v2">Hello</a>}
|
||||
assert_dom_equal expected, link_to("Hello", "http://www.example.com?q1=v1&q2=v2")
|
||||
assert_dom_equal expected, link_to("Hello", "http://www.example.com?q1=v1&q2=v2")
|
||||
end
|
||||
|
||||
def test_link_tag_with_query_and_no_name
|
||||
link = link_to(nil, "http://www.example.com?q1=v1&q2=v2")
|
||||
expected = %{<a href="http://www.example.com?q1=v1&q2=v2">http://www.example.com?q1=v1&q2=v2</a>}
|
||||
assert_dom_equal expected, link
|
||||
assert_dom_equal expected, link_to(nil, "http://www.example.com?q1=v1&q2=v2")
|
||||
end
|
||||
|
||||
def test_link_tag_with_back
|
||||
|
|
Loading…
Reference in a new issue