Search Gear #12 – Format Files / Code Review Comments!
So before test format the files in that directory with: go fmt then go test -v go test -cover go test -coverprofile=coverage.out go tool cover -func=coverage.out go tool cover -html=coverage.out NICE! AND I HAVE 100% Coverage and all tests pass! Good read: http://jeffknupp.com/blog/2014/08/19/go-is-fun-familiar-and-fast/ Now thoughts for the next bit of the application – or at…