Go tools

Collection of recommended Go tools.

Testing

github.com/smartystreets/goconvey (git)

Go testing with coverage analysis in the browser.

go get -v github.com/smartystreets/goconvey
cd package
goconvey

Vendoring

github.com/kardianos/govendor (git)

#!/bin/sh -ex

go get -u -v github.com/kardianos/govendor
rm -rf vendor
go get -u -v -t ./...
govendor init
govendor add +external