diff options
author | Gaurish Sharma <contact@gaurishsharma.com> | 2013-11-09 02:36:24 +0530 |
---|---|---|
committer | Gaurish Sharma <contact@gaurishsharma.com> | 2013-11-09 02:36:24 +0530 |
commit | 5122bbb3c20cbc77b9a324c88852a9fcdcdbb333 (patch) | |
tree | 2d4b0727578f7c100f401693063be19d62f00df3 | |
parent | 5741a8aae595950ab9129b3b4aed08adc22e0ed3 (diff) | |
download | rails-5122bbb3c20cbc77b9a324c88852a9fcdcdbb333.tar.gz rails-5122bbb3c20cbc77b9a324c88852a9fcdcdbb333.tar.bz2 rails-5122bbb3c20cbc77b9a324c88852a9fcdcdbb333.zip |
Skip test which is broken on jruby
This test is broken from quite a while & is expected to remain broken as
encoding issues are hardest to fix in JRuby. so lets skip this test for
now
-rw-r--r-- | actionpack/test/dispatch/static_test.rb | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/actionpack/test/dispatch/static_test.rb b/actionpack/test/dispatch/static_test.rb index 112f470786..b640459e24 100644 --- a/actionpack/test/dispatch/static_test.rb +++ b/actionpack/test/dispatch/static_test.rb @@ -37,6 +37,10 @@ module StaticTests end def test_served_static_file_with_non_english_filename + if RUBY_ENGINE == 'jruby ' + skip "Stop skiping if following bug gets fixed: " \ + "http://jira.codehaus.org/browse/JRUBY-7192" + end assert_html "means hello in Japanese\n", get("/foo/#{Rack::Utils.escape("こんにちは.html")}") end |