Got basic key test working

This commit is contained in:
Ethan Frey
2017-06-19 17:07:12 +02:00
parent 7dff40942a
commit 0edd1297a9
3 changed files with 45 additions and 3 deletions

View File

@@ -8,13 +8,24 @@ docs:
@go get github.com/davecheney/godoc2md
godoc2md $(REPO) > README.md
all: install test
all: get_vendor_deps install test
install:
go install ./cmd/keys
test:
test: test_unit test_cli
test_unit:
go test `glide novendor`
#go run tests/tendermint/*.go
test_cli: tests/shunit2
# sudo apt-get install jq
@./tests/keys.sh
tests/shunit2:
wget "https://raw.githubusercontent.com/kward/shunit2/master/source/2.1/src/shunit2" \
-q -O tests/shunit2
get_vendor_deps: ensure_tools
@rm -rf vendor/
@@ -30,7 +41,7 @@ prepgen: install
go install ./vendor/github.com/stretchr/testify/require
go install ./vendor/golang.org/x/crypto/bcrypt
codegen:
codegen:
@echo "--> regenerating all interface wrappers"
@gen
@echo "Done!"