diff options
author | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-10-08 15:24:52 -0500 |
---|---|---|
committer | Guillermo Iguaran <guilleiguaran@gmail.com> | 2011-10-08 15:24:52 -0500 |
commit | b111b41d131fd5d90d88052bb6e95676c29a9d8d (patch) | |
tree | 44ded6e7e7e932981a7ceca726d612764f7e97ea /railties | |
parent | 9ce03d15428fee6f63e72a3de7b60f5e1ab8a97a (diff) | |
download | rails-b111b41d131fd5d90d88052bb6e95676c29a9d8d.tar.gz rails-b111b41d131fd5d90d88052bb6e95676c29a9d8d.tar.bz2 rails-b111b41d131fd5d90d88052bb6e95676c29a9d8d.zip |
Test utf8 assets filenames with request instead of manifest lookup
Diffstat (limited to 'railties')
-rw-r--r-- | railties/test/application/assets_test.rb | 12 |
1 files changed, 4 insertions, 8 deletions
diff --git a/railties/test/application/assets_test.rb b/railties/test/application/assets_test.rb index 3a8add3d3e..2c9ebbf327 100644 --- a/railties/test/application/assets_test.rb +++ b/railties/test/application/assets_test.rb @@ -289,20 +289,16 @@ module ApplicationTests end test "precompile should handle utf8 filenames" do - if `uname` =~ /Darwin/ - skip 'Asset lookup with Unicode filenames is a problematic due to different normalization forms. Mac uses NKD for filenames; Windows and Linux use NFC. So your asset lookups may mysteriously fail. Sprockets should handle these platform issues transparently.' - end - filename = "レイルズ.png" app_file "app/assets/images/#{filename}", "not a image really" add_to_config "config.assets.precompile = [ /\.png$$/, /application.(css|js)$/ ]" precompile! - assert File.exists?("#{app_path}/public/assets/#{filename}") + require "#{app_path}/config/environment" - manifest = "#{app_path}/public/assets/manifest.yml" - assets = YAML.load_file(manifest) - assert_equal filename, assets[filename], assets.inspect + get "/assets/#{URI.escape(filename)}" + assert_match "not a image really", last_response.body + assert File.exists?("#{app_path}/public/assets/#{filename}") end test "assets are cleaned up properly" do |