Skip to content

Commit

Permalink
Updated readme with last features.
Browse files Browse the repository at this point in the history
  • Loading branch information
jmartin82 committed Mar 18, 2020
1 parent a5947a6 commit b30866b
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 35 deletions.
31 changes: 0 additions & 31 deletions .github/workflows/go.yml

This file was deleted.

2 changes: 2 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,8 @@ response:

```

**Note:** Yaml format allows more than one request in the same file.

You can see more complex examples [here](/config).

### Getting started
Expand Down
8 changes: 4 additions & 4 deletions config/multiple_requests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,17 +2,17 @@
description: Returns 'Hello world!'
request:
method: GET
path: /hello
path: /multi_request_1
response:
statusCode: 200
body: >
Hello world!
Hello request 1!
--- # Second request
description: Returns 'Boom!'
request:
method: GET
path: /hello2
path: /multi_request_2
response:
statusCode: 200
body: >
Boom!
Boom request 2!

0 comments on commit b30866b

Please sign in to comment.