A collection of go-check
Checkers to ease the use of it.
This fork uses the new URL for gocheck which is now gopkg.in/check.v1
.
You need either docker, or go
and glide
in order to build and test shakers.
You need to run the test-unit
target.
$ make test-unit
docker build -t "shakers-dev:master" .
# […]
docker run --rm -it "shakers-dev:master" ./script/make.sh test-unit
---> Making bundle: test-unit (in .)
+ go test -cover -coverprofile=cover.out .
ok github.com/ggtools/shakers 0.015s coverage: 96.0% of statements
Test success
- Get the dependencies with
glide up
(or usego get
but you have no garantuees over the version of the dependencies) - Run tests with
go test .