mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-14 19:29:32 +08:00
17 lines
251 B
Go
17 lines
251 B
Go
![]() |
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("127.0.0.1:8888")
|
||
|
|
||
|
gobottest.Assert(t, d.respAddr, "127.0.0.1:8888")
|
||
|
}
|