File tree Expand file tree Collapse file tree 3 files changed +8
-0
lines changed
Expand file tree Collapse file tree 3 files changed +8
-0
lines changed Original file line number Diff line number Diff line change @@ -62,11 +62,15 @@ class ParametersMutatorsTest < ActiveSupport::TestCase
6262 end
6363
6464 test "select! retains permitted status" do
65+ jruby_skip "https://github.com/jruby/jruby/issues/3137"
66+
6567 @params . permit!
6668 assert @params . select! { |k | k != "person" } . permitted?
6769 end
6870
6971 test "select! retains unpermitted status" do
72+ jruby_skip "https://github.com/jruby/jruby/issues/3137"
73+
7074 assert_not @params . select! { |k | k != "person" } . permitted?
7175 end
7276
Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ def test_response_body_encoding
171171 end
172172
173173 test "read content type without charset" do
174+ jruby_skip "https://github.com/jruby/jruby/issues/3138"
175+
174176 original = ActionDispatch ::Response . default_charset
175177 begin
176178 ActionDispatch ::Response . default_charset = 'utf-16'
Original file line number Diff line number Diff line change @@ -109,6 +109,8 @@ def test_with_an_invalid_concern_name
109109 end
110110
111111 def test_concerns_executes_block_in_context_of_current_mapper
112+ jruby_skip "https://github.com/jruby/jruby/issues/3143"
113+
112114 mapper = ActionDispatch ::Routing ::Mapper . new ( ActionDispatch ::Routing ::RouteSet . new )
113115 mapper . concern :test_concern do
114116 resources :things
You can’t perform that action at this time.
0 commit comments