1
0
Fork 0
mirror of https://github.com/rails/rails.git synced 2022-11-09 12:12:34 -05:00

Add test for csp_meta_tag

This commit is contained in:
yuuji.yaginuma 2019-02-14 13:51:18 +09:00
parent ac68550ae6
commit 3f186e3045

View file

@ -0,0 +1,31 @@
# frozen_string_literal: true
require "abstract_unit"
class CspHelperWithCspEnabledTest < ActionView::TestCase
tests ActionView::Helpers::CspHelper
def content_security_policy_nonce
"iyhD0Yc0W+c="
end
def content_security_policy?
true
end
def test_csp_meta_tag
assert_equal "<meta name=\"csp-nonce\" content=\"iyhD0Yc0W+c=\" />", csp_meta_tag
end
end
class CspHelperWithCspDisabledTest < ActionView::TestCase
tests ActionView::Helpers::CspHelper
def content_security_policy?
false
end
def test_csp_meta_tag
assert_nil csp_meta_tag
end
end