Correct testing instructions

pull/1139/head
Philip O'Toole 2014-11-19 11:38:13 -08:00
parent 7163725e42
commit 4c2f1e09ad
1 changed files with 3 additions and 3 deletions

View File

@ -68,11 +68,11 @@ go build ./...
Once compilation completes, the binaries can be found in `$GOPATH/bin`.
To run the test, execute the following command:
To run the tests, execute the following command:
```bash
cd $GOPATH/src/github.com/influxdb
go test -v
cd $GOPATH/src/github.com/influxdb/influxdb
go test -v ./...
# run tests that match some pattern
go test -run=TestDatabase . -v