mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-27 13:48:56 +08:00
22 lines
328 B
Go
22 lines
328 B
Go
![]() |
package leap
|
||
|
|
||
|
import (
|
||
|
"github.com/hybridgroup/gobot"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
var l *LeapMotionAdaptor
|
||
|
|
||
|
func init() {
|
||
|
l = NewLeapMotionAdaptor("bot", "/dev/null")
|
||
|
}
|
||
|
|
||
|
func TestFinalize(t *testing.T) {
|
||
|
t.SkipNow()
|
||
|
gobot.Expect(t, l.Finalize(), true)
|
||
|
}
|
||
|
func TestConnect(t *testing.T) {
|
||
|
t.SkipNow()
|
||
|
gobot.Expect(t, l.Connect(), true)
|
||
|
}
|