mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-02 22:17:12 +08:00
22 lines
308 B
Go
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))
|
|
})
|
|
})
|