mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-05-11 19:29:20 +08:00
17 lines
231 B
Go
17 lines
231 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("8888")
|
|
|
|
gobottest.Assert(t, d.respPort, "8888")
|
|
}
|