Merge pull request #64 from dnephin/default-to-go1.10

Default to go1.10
tree: d9f1b25bed43cc9ff9a803a9a1bfd9245982ad72
  1. assert/
  2. dobifiles/
  3. env/
  4. fs/
  5. golden/
  6. icmd/
  7. internal/
  8. poll/
  9. scripts/
  10. skip/
  11. testsum/
  12. .gitignore
  13. circle.yml
  14. dobi.yaml
  15. gometalinter.json
  16. Gopkg.toml
  17. LICENSE
  18. pkg.go
  19. README.md
README.md

Go Test Yourself

A collection of packages compatible with go test to support common testing patterns.

GoDoc CircleCI Go Reportcard

Packages

  • assert - compare values and fail the test when the comparison fails
  • env - test code that uses environment variables
  • fs - create test files and directories
  • golden - compare large multi-line strings
  • icmd - execute binaries and test the output
  • poll - test asynchronous code by polling until a desired state is reached
  • skip - skip tests based on conditions
  • testsum - a program to summarize go test output and test failures

Related