Add some unit tests for a few functions

Mostly only testing the easily-testable helpers in utils and Config
This commit is contained in:
Ben Buhse 2026-02-11 16:14:29 -06:00
commit 0970702263
No known key found for this signature in database
GPG key ID: 7916ACFCD38FD0B4
3 changed files with 195 additions and 0 deletions

View file

@ -255,3 +255,8 @@ const WindowManager = @import("WindowManager.zig");
const XkbBindings = @import("XkbBindings.zig");
const log = std.log.scoped(.main);
test {
_ = @import("utils.zig");
_ = @import("Config.zig");
}