-
Notifications
You must be signed in to change notification settings - Fork 46
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
support multiple GET responses per file
Since windows does not support special characters in the file names this allows for all responses to a certian get request to be in one file and distinquished like POST responses would be split by new lines and header lines. fixes #19
- Loading branch information
1 parent
60c9bef
commit a640546
Showing
3 changed files
with
52 additions
and
6 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
//! params: {"foo": "baz"} | ||
{ | ||
"response": "response for baz" | ||
} | ||
|
||
//! params: {"foo": "bar"} | ||
{ | ||
"response": "response for bar" | ||
} |