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
62
62
end
63
63
64
64
test "select! retains permitted status" do
65
+ jruby_skip "https://github.com/jruby/jruby/issues/3137"
66
+
65
67
@params . permit!
66
68
assert @params . select! { |k | k != "person" } . permitted?
67
69
end
68
70
69
71
test "select! retains unpermitted status" do
72
+ jruby_skip "https://github.com/jruby/jruby/issues/3137"
73
+
70
74
assert_not @params . select! { |k | k != "person" } . permitted?
71
75
end
72
76
Original file line number Diff line number Diff line change @@ -171,6 +171,8 @@ def test_response_body_encoding
171
171
end
172
172
173
173
test "read content type without charset" do
174
+ jruby_skip "https://github.com/jruby/jruby/issues/3138"
175
+
174
176
original = ActionDispatch ::Response . default_charset
175
177
begin
176
178
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
109
109
end
110
110
111
111
def test_concerns_executes_block_in_context_of_current_mapper
112
+ jruby_skip "https://github.com/jruby/jruby/issues/3143"
113
+
112
114
mapper = ActionDispatch ::Routing ::Mapper . new ( ActionDispatch ::Routing ::RouteSet . new )
113
115
mapper . concern :test_concern do
114
116
resources :things
You can’t perform that action at this time.
0 commit comments