Rename `examples/testing/` to `examples/example_service/`

pull/2/head
Vinícius Garcia 2021-01-03 13:58:10 -03:00
parent 689a60710d
commit 76830d5f5c
5 changed files with 5 additions and 5 deletions

View File

@ -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/...

View File

@ -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