-require 'test_helper'
+require "test_helper"
class ApplicationHelperTest < ActionView::TestCase
fixtures :users, :user_roles
I18n.locale = "en"
end
- def setup
- I18n.locale = "en"
- end
-
def test_linkify
%w(http://example.com/test ftp://example.com/test https://example.com/test).each do |link|
text = "Test #{link} is made into a link"
assert_dom_equal "Test <a href=\"#{link}\" rel=\"nofollow\">#{link}</a> is made into a link", html
html = linkify(text.html_safe)
- assert_equal true, html.html_safe?
+ assert_equal true, html.html_safe?
assert_dom_equal "Test <a href=\"#{link}\" rel=\"nofollow\">#{link}</a> is made into a link", html
end
assert_dom_equal text, html
html = linkify(text.html_safe)
- assert_equal true, html.html_safe?
+ assert_equal true, html.html_safe?
assert_dom_equal text, html
end
end