Initial push

This commit is contained in:
tsuji_jumpei
2014-12-04 21:08:46 +09:00
parent 98092a4a43
commit 1f1601cd3c
6 changed files with 357 additions and 0 deletions

15
Makefile Normal file
View File

@@ -0,0 +1,15 @@
.PHONEY: all setup test cover
all: setup cover
setup:
go get code.google.com/p/go.tools/cmd/cover
go get ./...
test:
go test -v ./...
cover:
go test -v -coverprofile=coverage.txt -covermode=count ./appstore