1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-02 22:17:12 +08:00
hybridgroup.gobot/platforms/i2c/wiichuck_driver_test.go
2014-05-22 21:33:05 -07:00

22 lines
308 B
Go

package i2c
import (
. "github.com/onsi/ginkgo"
. "github.com/onsi/gomega"
)
var _ = Describe("Wiichuck", func() {
var (
t TestAdaptor
w *WiichuckDriver
)
BeforeEach(func() {
w = NewWiichuckDriver(t, "bot")
})
PIt("Must be able to Start", func() {
Expect(w.Start()).To(Equal(true))
})
})