(WIP) Add tests for rule target generators.

This commit is contained in:
Anna Rose Wiggins 2025-07-16 10:59:29 -04:00
parent 23422fac3c
commit 496ec531e4

View file

@ -0,0 +1,27 @@
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))
}