Skip to content

Commit

Permalink
update readme to reflect refactoring
Browse files Browse the repository at this point in the history
  • Loading branch information
rogerwelin committed Jun 10, 2020
1 parent 43fcb00 commit 68522b3
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README-ZH.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ Summary:
示例:访问外部文件指定的URL路径(外部文件也可以是http路径的)

```bash
$ ./cassowary run-file -u http://localhost:8000 -c 10 -f urlpath.txt
$ ./cassowary run -u http://localhost:8000 -c 10 -f urlpath.txt

Starting Load Test with 3925 requests using 10 concurrent users

Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ Installation

Grab a pre-built binary from the [GitHub Releases page](https://github.com/rogerwelin/cassowary/releases). You can optionally put the **cassowary** binary in your `PATH` so you can run cassowary from any location. Alternative you can:

### Homebrew on MAC OSX
### Homebrew on Mac OSX
You can install **cassowary** using the Homebrew package manager on Mac:

```bash
Expand Down Expand Up @@ -107,14 +107,14 @@ Summary:
Example running **cassowary** in file slurp mode where all URL paths are specified from an external file (which can also be fetched from http if specified). By default cassowary will, without the -n flag specified, make one request per path specified in the file. However with the -n flag you can also specify how many request you want cassowary to generate against those URL paths. Example:

```bash
$ ./cassowary run-file -u http://localhost:8000 -c 1 -f urlpath.txt
$ ./cassowary run -u http://localhost:8000 -c 1 -f urlpath.txt

Starting Load Test with 5 requests using 1 concurrent users

[ omitted ]


$ ./cassowary run-file -u http://localhost:8000 -c 10 -n 100 -f urlpath.txt
$ ./cassowary run -u http://localhost:8000 -c 10 -n 100 -f urlpath.txt

Starting Load Test with 100 requests using 10 concurrent users

Expand Down

0 comments on commit 68522b3

Please sign in to comment.