Skip to content

Latest commit

 

History

History
25 lines (16 loc) · 451 Bytes

README.md

File metadata and controls

25 lines (16 loc) · 451 Bytes

Learn Go with tests

Code written while following along Learn Go with tests

Usage

Run all tests in module

go test -v ./...

Run all tests in workspace (source)

go list -f '{{.Dir}}' -m | xargs go test -v -cover

Run godoc server

# visit localhost:8080 on any browser
godoc -http :8080