1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-14 19:29:32 +08:00

17 lines
231 B
Go
Raw Normal View History

package tello
import (
"testing"
"gobot.io/x/gobot"
"gobot.io/x/gobot/gobottest"
)
var _ gobot.Driver = (*Driver)(nil)
func TestTelloDriver(t *testing.T) {
d := NewDriver("8888")
gobottest.Assert(t, d.respPort, "8888")
}