aboutsummaryrefslogtreecommitdiffstats
path: root/actionview/test/template
diff options
context:
space:
mode:
authorRyuta Kamizono <kamipo@gmail.com>2019-04-02 03:26:31 +0900
committerGitHub <noreply@github.com>2019-04-02 03:26:31 +0900
commite4e12185837c1aa9233e4669d0a54b54173e1bf1 (patch)
tree8a63972a1b3317906a04dccbe76146716c5a4a0e /actionview/test/template
parenta835fba44f23637aa8d043a46cbc3799f644bea1 (diff)
parent771973c13dd5b68fe96fbe5ea96bd11656437dc1 (diff)
downloadrails-e4e12185837c1aa9233e4669d0a54b54173e1bf1.tar.gz
rails-e4e12185837c1aa9233e4669d0a54b54173e1bf1.tar.bz2
rails-e4e12185837c1aa9233e4669d0a54b54173e1bf1.zip
Merge pull request #35820 from sharang-d/url-to-URL-except-actionpack
url -> URL where apt except inside actionpack/
Diffstat (limited to 'actionview/test/template')
-rw-r--r--actionview/test/template/javascript_helper_test.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/actionview/test/template/javascript_helper_test.rb b/actionview/test/template/javascript_helper_test.rb
index 4c28aeaee1..f974e5ae0c 100644
--- a/actionview/test/template/javascript_helper_test.rb
+++ b/actionview/test/template/javascript_helper_test.rb
@@ -54,7 +54,7 @@ class JavaScriptHelperTest < ActionView::TestCase
assert_equal "foo", output_buffer, "javascript_tag without a block should not concat to output_buffer"
end
- # Setting the :extname option will control what extension (if any) is appended to the url for assets
+ # Setting the :extname option will control what extension (if any) is appended to the URL for assets
def test_javascript_include_tag
assert_dom_equal "<script src='/foo.js'></script>", javascript_include_tag("/foo")
assert_dom_equal "<script src='/foo'></script>", javascript_include_tag("/foo", extname: false)