27 lines
465 B
Go
27 lines
465 B
Go
package config
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/holoplot/go-evdev"
|
|
"github.com/stretchr/testify/suite"
|
|
)
|
|
|
|
type MakeRuleTargetsTests struct {
|
|
suite.Suite
|
|
devs map[string]*evdev.InputDevice
|
|
}
|
|
|
|
func (t *MakeRuleTargetsTests) SetupSuite() {
|
|
t.devs = map[string]*evdev.InputDevice{
|
|
"test": {},
|
|
}
|
|
}
|
|
|
|
func (t *MakeRuleTargetsTests) TestMakeRuleTargetButton() {
|
|
// STUB
|
|
}
|
|
|
|
func TestRunnerMakeRuleTargets(t *testing.T) {
|
|
suite.Run(t, new(MakeRuleTargetsTests))
|
|
}
|