diff options
Diffstat (limited to '')
-rw-r--r-- | tests/by-name/le/less/test.nix | 21 |
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/by-name/le/less/test.nix b/tests/by-name/le/less/test.nix new file mode 100644 index 00000000..289a9989 --- /dev/null +++ b/tests/by-name/le/less/test.nix @@ -0,0 +1,21 @@ +{mkTest}: +mkTest { + name = "less"; + + configuration = { + imports = [ + ../../../../modules/by-name/le/less/module.nix + ]; + config.soispha.programs.less.enable = true; + }; + + testData = { + "data/test.file" = ./data/test.file; + }; + + description = ./test.desc; + + # FIXME: Currently the golden file is not reproducible. <2024-11-22> + hash = null; + # hash = "87901231393b51cdd45bbb4339a32db2894a3a5ab164cb5c7a8fa14721fdcba7"; +} |