37 lines
708 B
Go
37 lines
708 B
Go
package keyboard
|
|
|
|
import (
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/hybridgroup/gobot"
|
|
"github.com/hybridgroup/gobot/gobottest"
|
|
)
|
|
|
|
var _ gobot.Driver = (*Driver)(nil)
|
|
|
|
func initTestKeyboardDriver() *Driver {
|
|
d := NewDriver()
|
|
d.connect = func(k *Driver) (err error) {
|
|
k.stdin = &os.File{}
|
|
return nil
|
|
}
|
|
d.listen = func(k *Driver) {}
|
|
return d
|
|
}
|
|
|
|
func TestKeyboardDriver(t *testing.T) {
|
|
d := initTestKeyboardDriver()
|
|
gobottest.Assert(t, d.Connection(), (gobot.Connection)(nil))
|
|
}
|
|
|
|
func TestKeyboardDriverStart(t *testing.T) {
|
|
d := initTestKeyboardDriver()
|
|
gobottest.Assert(t, d.Start(), nil)
|
|
}
|
|
|
|
func TestKeyboardDriverHalt(t *testing.T) {
|
|
d := initTestKeyboardDriver()
|
|
gobottest.Assert(t, d.Halt(), nil)
|
|
}
|