1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-27 13:48:56 +08:00
hybridgroup.gobot/gobot_suite_test.go

15 lines
215 B
Go
Raw Normal View History

package gobot
2013-11-14 16:08:08 -08:00
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
2013-12-30 22:04:23 -08:00
"log"
2013-11-14 16:08:08 -08:00
"testing"
)
func TestGobot(t *testing.T) {
2013-12-30 22:04:23 -08:00
log.SetOutput(new(null))
2013-11-14 16:08:08 -08:00
RegisterFailHandler(Fail)
RunSpecs(t, "Gobot Suite")
}