aboutsummaryrefslogtreecommitdiffstats
path: root/actionpack/test
diff options
context:
space:
mode:
authorDavid Heinemeier Hansson <david@loudthinking.com>2005-09-08 16:39:06 +0000
committerDavid Heinemeier Hansson <david@loudthinking.com>2005-09-08 16:39:06 +0000
commit3c3d936f4d026336479c5ea0e953b8dcc823fbbd (patch)
tree078c7e080e747da18e2ddf3933d5d13297d1489e /actionpack/test
parente6428abd23f8449900e174066a3acdd8ddcb7f03 (diff)
downloadrails-3c3d936f4d026336479c5ea0e953b8dcc823fbbd.tar.gz
rails-3c3d936f4d026336479c5ea0e953b8dcc823fbbd.tar.bz2
rails-3c3d936f4d026336479c5ea0e953b8dcc823fbbd.zip
Fixed all AssetHelper methods to work with relative paths, such that javascript_include_tag('stdlib/standard') will look in /javascripts/stdlib/standard instead of '/stdlib/standard/' #1963
git-svn-id: http://svn-commit.rubyonrails.org/rails/trunk@2156 5ecf4fe2-1ee6-0310-87b1-e25e094e27de
Diffstat (limited to 'actionpack/test')
-rw-r--r--actionpack/test/template/asset_tag_helper_test.rb1
1 files changed, 1 insertions, 0 deletions
diff --git a/actionpack/test/template/asset_tag_helper_test.rb b/actionpack/test/template/asset_tag_helper_test.rb
index 045c4b1060..84c273a72f 100644
--- a/actionpack/test/template/asset_tag_helper_test.rb
+++ b/actionpack/test/template/asset_tag_helper_test.rb
@@ -37,6 +37,7 @@ class AssetTagHelperTest < Test::Unit::TestCase
JavascriptPathToTag = {
%(javascript_path("xmlhr")) => %(/javascripts/xmlhr.js),
+ %(javascript_path("super/xmlhr")) => %(/javascripts/super/xmlhr.js)
}
JavascriptIncludeToTag = {