2013-12-02 13:38:24 +08:00
|
|
|
package gobot
|
2013-11-15 08:08:08 +08:00
|
|
|
|
|
|
|
import (
|
|
|
|
. "github.com/onsi/ginkgo"
|
|
|
|
. "github.com/onsi/gomega"
|
2013-12-31 14:04:23 +08:00
|
|
|
"log"
|
2013-11-15 08:08:08 +08:00
|
|
|
"testing"
|
|
|
|
)
|
|
|
|
|
|
|
|
func TestGobot(t *testing.T) {
|
2013-12-31 14:04:23 +08:00
|
|
|
log.SetOutput(new(null))
|
2013-11-15 08:08:08 +08:00
|
|
|
RegisterFailHandler(Fail)
|
|
|
|
RunSpecs(t, "Gobot Suite")
|
|
|
|
}
|