Add support for multiple keycode formats. #3

Merged
anna merged 4 commits from keycodes into main 2025-07-16 23:27:29 +00:00
Showing only changes of commit 496ec531e4 - Show all commits

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))
}