Rails RSpec, how to test in Google Go

I am looking for English-oriented behavior that sounds like a testing utility for Go . Something like RSpec in Ruby or Jasmine in JavaScript.

I found go-spec on GitHub, but it broke (it did not update after 2 years and DOES NOT work with Go 1.

+7
source share
2 answers

I created GoConvey , which includes the added bonus of automatically updating the user interface that runs in your browser.

+6
source

Ginkgo is a BDD-style Golang testing system: http://onsi.imtqy.com/ginkgo/

+5
source

All Articles