We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e489995 commit 40cc054Copy full SHA for 40cc054
spec/grape/api_spec.rb
@@ -523,19 +523,19 @@ class DummyFormatClass
523
end
524
525
526
- send('get', 'nested')
+ get 'nested'
527
expect(last_response.body).to eql 'root'
528
529
- send('get', 'nested/something')
+ get 'nested/something'
530
expect(last_response.body).to eql 'something'
531
532
- send('get', 'nested/missing')
+ get 'nested/missing'
533
expect(last_response.body).to eql 'catch-all'
534
535
- send('post', 'nested')
+ post 'nested'
536
537
538
- send('post', 'nested/something')
+ post 'nested/something'
539
540
541
0 commit comments