diff options
Diffstat (limited to 'tests/run.lua')
| -rw-r--r-- | tests/run.lua | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/tests/run.lua b/tests/run.lua index b3ba0dd..0c00dd1 100644 --- a/tests/run.lua +++ b/tests/run.lua @@ -4358,6 +4358,15 @@ test("Missing feature groups receive fallback links", function() same(nil, fallback_definition.options.force) end) +test("Cursor feedback falls back to the Cursor group", function() + local host = MemoryHost.new() + local feedback = feedback_service.new(host) + + local results = feedback:evaluate_feature_links() + same("Cursor", results.CleverFCursor.target) + same("Cursor", host:highlight_groups().CleverFCursor.link) +end) + for _, item in ipairs(tests) do local ok, failure = xpcall(item.body, debug.traceback) if not ok then |
