-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added --dry-run and merged --verbose.
Signed-off-by: dblock <[email protected]>
- Loading branch information
Showing
9 changed files
with
120 additions
and
28 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
$schema: ../json_schemas/test_story.schema.yaml | ||
|
||
skip: false | ||
|
||
description: A story with all its parts. | ||
|
||
prologues: | ||
- path: /things | ||
method: DELETE | ||
status: [200, 404] | ||
|
||
epilogues: | ||
- path: /things/one | ||
method: DELETE | ||
status: [200, 404] | ||
|
||
chapters: | ||
- synopsis: A PUT method. | ||
path: /{index} | ||
method: PUT | ||
parameters: | ||
index: one | ||
|
||
- synopsis: A HEAD method. | ||
path: /{index} | ||
method: HEAD | ||
parameters: | ||
index: one | ||
|
||
- synopsis: A GET method. | ||
path: /{index} | ||
method: GET | ||
parameters: | ||
index: one | ||
|
||
- synopsis: A POST method. | ||
path: /{index}/_doc | ||
method: POST | ||
parameters: | ||
index: one | ||
|
||
- synopsis: A DELETE method. | ||
path: /{index} | ||
method: DELETE | ||
parameters: | ||
index: one |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
$schema: ../json_schemas/test_story.schema.yaml | ||
|
||
description: A story with no beginning or end. | ||
|
||
chapters: [] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters