forked from zipmark/rspec_api_documentation
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathexample_request.feature
39 lines (36 loc) · 1.03 KB
/
example_request.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
37
38
39
Feature: Example Request
Background:
Given a file named "app.rb" with:
"""
class App
def self.call(env)
[200, {}, ["Hello, world"]]
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
get "/" do
example_request "Greeting your favorite gem" do
status.should eq(201)
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:
"""
Failure/Error: status.should eq(201)
"""
Then the output should not contain "dsl.rb"
Then the output should contain:
"""
rspec ./app_spec.rb:10 # Example Request GET / Greeting your favorite gem
"""