Skip to content

Commit

Permalink
Skip test which is broken on jruby
Browse files Browse the repository at this point in the history
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
  • Loading branch information
gaurish committed Nov 8, 2013
1 parent 5741a8a commit 5122bbb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions actionpack/test/dispatch/static_test.rb
Expand Up @@ -37,6 +37,10 @@ def test_serves_static_index_file_in_directory
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

Expand Down

0 comments on commit 5122bbb

Please sign in to comment.