1
0
Fork 0
mirror of https://github.com/nix-community/home-manager.git synced 2024-12-14 11:57:55 +00:00

xresources: simplify tests

This commit is contained in:
Robert Helgesson 2024-12-06 12:22:03 +01:00
parent 0b42cc1b1c
commit 63eb786e04
No known key found for this signature in database
GPG key ID: 96E745BD17AA17ED
2 changed files with 18 additions and 26 deletions

View file

@ -1,13 +1,9 @@
{ config, lib, ... }: { ... }:
with lib;
{ {
config = { xresources.properties = { };
xresources.properties = { };
nmt.script = '' nmt.script = ''
assertPathNotExists home-files/.Xresources assertPathNotExists home-files/.Xresources
''; '';
};
} }

View file

@ -1,22 +1,18 @@
{ config, lib, ... }: { ... }:
with lib;
{ {
config = { xresources = {
xresources = { properties = {
properties = { "Test*string" = "test-string";
"Test*string" = "test-string"; "Test*boolean1" = true;
"Test*boolean1" = true; "Test*boolean2" = false;
"Test*boolean2" = false; "Test*int" = 10;
"Test*int" = 10; "Test*list" = [ "list-str" true false 10 ];
"Test*list" = [ "list-str" true false 10 ];
};
}; };
nmt.script = ''
assertFileExists home-files/.Xresources
assertFileContent home-files/.Xresources ${./xresources-expected.conf}
'';
}; };
nmt.script = ''
assertFileExists home-files/.Xresources
assertFileContent home-files/.Xresources ${./xresources-expected.conf}
'';
} }