23 lines
506 B
Go
23 lines
506 B
Go
package sphero
|
|
|
|
import (
|
|
"github.com/hybridgroup/gobot"
|
|
"testing"
|
|
)
|
|
|
|
func initTestSpheroAdaptor() *SpheroAdaptor {
|
|
a := NewSpheroAdaptor("bot", "/dev/null")
|
|
a.sp = gobot.NullReadWriteCloser{}
|
|
a.connect = func(a *SpheroAdaptor) (err error) { return nil }
|
|
return a
|
|
}
|
|
|
|
func TestSpheroAdaptorFinalize(t *testing.T) {
|
|
a := initTestSpheroAdaptor()
|
|
gobot.Assert(t, len(a.Finalize()), 0)
|
|
}
|
|
func TestSpheroAdaptorConnect(t *testing.T) {
|
|
a := initTestSpheroAdaptor()
|
|
gobot.Assert(t, len(a.Connect()), 0)
|
|
}
|