mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
15 lines
215 B
Go
15 lines
215 B
Go
package gobot
|
|
|
|
import (
|
|
. "github.com/onsi/ginkgo"
|
|
. "github.com/onsi/gomega"
|
|
"log"
|
|
"testing"
|
|
)
|
|
|
|
func TestGobot(t *testing.T) {
|
|
log.SetOutput(new(null))
|
|
RegisterFailHandler(Fail)
|
|
RunSpecs(t, "Gobot Suite")
|
|
}
|