diff options
author | Yaroslav Markin <yaroslav@markin.net> | 2018-04-17 18:05:12 +0300 |
---|---|---|
committer | Yaroslav Markin <yaroslav@markin.net> | 2018-04-17 22:50:33 +0300 |
commit | 47013a7126a92e1f2890b68e0fd2e7ba1b77c97c (patch) | |
tree | 5937c8dc7c20e8d620b9f12f89bcb6f4a152bea7 /actionview/test | |
parent | 15d7fb90cc9e783b4b925246f22d4c41c7fc447b (diff) | |
download | rails-47013a7126a92e1f2890b68e0fd2e7ba1b77c97c.tar.gz rails-47013a7126a92e1f2890b68e0fd2e7ba1b77c97c.tar.bz2 rails-47013a7126a92e1f2890b68e0fd2e7ba1b77c97c.zip |
Add the `nonce: true` option for `javascript_include_tag` helper.
Diffstat (limited to 'actionview/test')
-rw-r--r-- | actionview/test/template/asset_tag_helper_test.rb | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/actionview/test/template/asset_tag_helper_test.rb b/actionview/test/template/asset_tag_helper_test.rb index 6d98eacfb8..e68f03d1f4 100644 --- a/actionview/test/template/asset_tag_helper_test.rb +++ b/actionview/test/template/asset_tag_helper_test.rb @@ -29,6 +29,10 @@ class AssetTagHelperTest < ActionView::TestCase "http://www.example.com" end + def content_security_policy_nonce + "iyhD0Yc0W+c=" + end + AssetPathToTag = { %(asset_path("")) => %(), %(asset_path(" ")) => %(), @@ -421,6 +425,10 @@ class AssetTagHelperTest < ActionView::TestCase assert_dom_equal %(<script src="//assets.example.com/javascripts/prototype.js"></script>), javascript_include_tag("prototype") end + def test_javascript_include_tag_nonce + assert_dom_equal %(<script src="/javascripts/bank.js" nonce="iyhD0Yc0W+c="></script>), javascript_include_tag("bank", nonce: true) + end + def test_stylesheet_path StylePathToTag.each { |method, tag| assert_dom_equal(tag, eval(method)) } end |