spec/grape/validations/validators/values_spec.rb in grape-1.3.2 vs spec/grape/validations/validators/values_spec.rb in grape-1.3.3
- old
+ new
@@ -317,10 +317,10 @@
it 'allows for a required param in child scope' do
get('/optional_with_required_values')
expect(last_response.status).to eq 200
end
- it 'allows for an optional param with a list of values' do
+ it 'accepts for an optional param with a list of values' do
put('/optional_with_array_of_string_values', optional: nil)
expect(last_response.status).to eq 200
end
end