diff --git a/test/helpers/rendering_helper_test.rb b/test/helpers/rendering_helper_test.rb index 5e558736..1f291020 100644 --- a/test/helpers/rendering_helper_test.rb +++ b/test/helpers/rendering_helper_test.rb @@ -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 = '

http://foo.bar/foo--bar

' - # assert_equal(expected, actual) + skip("see issue #2056") + + actual = render_text("http://foo.bar/foo--bar") + expected = '

http://foo.bar/foo--bar

' + 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 = '

A link to GitHub.

' - # assert_equal(expected, actual) + skip("see issue #2066") + + actual = render_text('A link to "GitHub":http://github.com/.') + expected = '

A link to GitHub.

' + assert_equal(expected, actual) end test "url with slash in query string" do