1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-01 13:48:57 +08:00
hybridgroup.gobot/platforms/i2c/wiichuck_driver_test.go

22 lines
301 B
Go
Raw Normal View History

2014-04-27 18:54:41 -07:00
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)
})
PIt("Must be able to Start", func() {
Expect(w.Start()).To(Equal(true))
})
})