Skip to content

Instantly share code, notes, and snippets.

@glyn
Created December 2, 2014 13:58
Show Gist options
  • Save glyn/6ddcb4ba6085aaafe281 to your computer and use it in GitHub Desktop.
Save glyn/6ddcb4ba6085aaafe281 to your computer and use it in GitHub Desktop.
package temp_test
import (
. "github.com/onsi/ginkgo"
)
var _ = Describe("Blah", func() {
var f func()
It("runs", func() {
f()
})
})
package temp
package temp_test
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
"testing"
)
func TestTemp(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "Temp Suite")
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment