Tests for this package put in dir /test
Run all test
go test ./... -test.v -tags module
Run test
go test ./... -test.v
Generate coverage file
go test -coverprofile=coverage.out ./...
Transform coverage file to html
go tool cover -html=coverage.out -o coverage.html
Run test
go test ./tests/modules -test.v -tags module