Skip to content

Latest commit

 

History

History
24 lines (16 loc) · 608 Bytes

README.md

File metadata and controls

24 lines (16 loc) · 608 Bytes

brazilian-utils

A Golang library containing brazilian-specific utils.

build

Testing

To run the tests locally, run the following command:

$ go test ./... 

If you want to see how covered the project is, you can run the following command to get coverage report

$ go test ./... -coverprofile=coverage.out

Once the above has been run, it's time to see it in your browser. The following command will open a new tab in your browser with the code coverage.

$ go tool cover -html=coverage.out