mirror of https://github.com/VinGarcia/ksql.git
Rename `examples/testing/` to `examples/example_service/`
parent
689a60710d
commit
76830d5f5c
8
Makefile
8
Makefile
|
@ -12,17 +12,17 @@ lint: setup
|
|||
@echo "Golint & Go Vet found no problems on your code!"
|
||||
|
||||
mock: setup
|
||||
mockgen -package=exampleservice -source=contracts.go -destination=examples/testing/mocks.go
|
||||
mockgen -package=exampleservice -source=contracts.go -destination=examples/example_service/mocks.go
|
||||
|
||||
setup: .make.setup
|
||||
.make.setup:
|
||||
go get github.com/kyoh86/richgo
|
||||
go get golang.org/x/lint
|
||||
@# (Gomock is used on examples/testing)
|
||||
@# (Gomock is used on examples/example_service)
|
||||
go get github.com/golang/mock/gomock
|
||||
go install github.com/golang/mock/mockgen
|
||||
touch .make.setup
|
||||
|
||||
# Running examples:
|
||||
exampleservice:
|
||||
$(GOPATH)/bin/richgo test ./examples/testing/...
|
||||
exampleservice: mock
|
||||
$(GOPATH)/bin/richgo test ./examples/example_service/...
|
||||
|
|
|
@ -166,7 +166,7 @@ This library has a few helper functions for helping your tests:
|
|||
- `kissorm.StructToMap(struct interface{}) (map[string]interface{}, error)`
|
||||
|
||||
If you want to see examples (we have examples for all the public functions) just
|
||||
read the example tests available on the our [example service](./examples/testing)
|
||||
read the example tests available on the our [example service](./examples/example_service)
|
||||
|
||||
### TODO List
|
||||
|
||||
|
|
Loading…
Reference in New Issue