prettytest
prettytest copied to clipboard
A simple testing library for Go
$ go get -v github.com/remogatto/prettytest/pta/ github.com/remogatto/prettytest/pta # github.com/remogatto/prettytest/pta github.com/remogatto/prettytest/pta/main.go:107: undefined: application.Fatal github.com/remogatto/prettytest/pta/main.go:147: undefined: application.Fatal github.com/remogatto/prettytest/pta/main.go:224: undefined: application.Fatal github.com/remogatto/prettytest/pta/main.go:236: too many arguments in call to application.Run $ pta -bash: pta: command...
I'm new to go and have been using pta to run my tests. Sadly I'm not using the PrettyTest library to do so. To me it would make sense to...
I imagine it would be possible to do something like [Jasmine](http://labix.org/gocheck). The `describe/it` functions could be imported with `.` (like Gocheck) and take a string description and a func. In...