forked from zipmark/rspec_api_documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpatch.feature
36 lines (33 loc) · 985 Bytes
/
patch.feature
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
Feature: Example Request with PATCH
Background:
Given a file named "app.rb" with:
"""
class App
def self.call(env)
if env["REQUEST_METHOD"] == "PATCH"
[200, {}, ["Hello, world"]]
else
[404, {}, ["ERROR"]]
end
end
end
"""
And a file named "app_spec.rb" with:
"""
require "rspec_api_documentation"
require "rspec_api_documentation/dsl"
RspecApiDocumentation.configure do |config|
config.app = App
end
resource "Example Request" do
patch "/" do
example_request "Trying out patch" do
expect(status).to eq(200)
end
end
end
"""
When I run `rspec app_spec.rb --require ./app.rb --format RspecApiDocumentation::ApiFormatter`
Scenario: Output should have the correct error line
Then the output should contain "1 example, 0 failures"
And the exit status should be 0