mirror of
https://github.com/TracksApp/tracks.git
synced 2025-12-16 15:20:13 +01:00
Uncomment but skip tests for known issues
This commit is contained in:
parent
6fbec08e09
commit
b50456d04d
1 changed files with 10 additions and 8 deletions
|
|
@ -45,10 +45,11 @@ class RenderingHelperTest < ActionView::TestCase
|
|||
end
|
||||
|
||||
test "http link (with double hyphens)" do
|
||||
# not implemented, see issue #2056
|
||||
# actual = render_text("http://foo.bar/foo--bar")
|
||||
# expected = '<p><a target="_blank" href="http://foo.bar/foo--bar">http://foo.bar/foo--bar</a></p>'
|
||||
# assert_equal(expected, actual)
|
||||
skip("see issue #2056")
|
||||
|
||||
actual = render_text("http://foo.bar/foo--bar")
|
||||
expected = '<p><a target="_blank" href="http://foo.bar/foo--bar">http://foo.bar/foo--bar</a></p>'
|
||||
assert_equal(expected, actual)
|
||||
end
|
||||
|
||||
test "textile http link" do
|
||||
|
|
@ -58,10 +59,11 @@ class RenderingHelperTest < ActionView::TestCase
|
|||
end
|
||||
|
||||
test "textile http link (in new window)" do
|
||||
# not implemented, see issue #2066
|
||||
# actual = render_text('A link to "GitHub":http://github.com/.')
|
||||
# expected = '<p>A link to <a target="_blank" href="http://github.com/">GitHub</a>.</p>'
|
||||
# assert_equal(expected, actual)
|
||||
skip("see issue #2066")
|
||||
|
||||
actual = render_text('A link to "GitHub":http://github.com/.')
|
||||
expected = '<p>A link to <a target="_blank" href="http://github.com/">GitHub</a>.</p>'
|
||||
assert_equal(expected, actual)
|
||||
end
|
||||
|
||||
test "url with slash in query string" do
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue