From 58716b7541858c4a6b0348b824c9c8ef35185c63 Mon Sep 17 00:00:00 2001 From: Robert Helgesson Date: Sun, 28 Jun 2020 11:23:34 +0200 Subject: [PATCH] xresources: add missing test file --- tests/modules/xresources/empty.nix | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 tests/modules/xresources/empty.nix diff --git a/tests/modules/xresources/empty.nix b/tests/modules/xresources/empty.nix new file mode 100644 index 00000000..9dd80176 --- /dev/null +++ b/tests/modules/xresources/empty.nix @@ -0,0 +1,13 @@ +{ config, lib, ... }: + +with lib; + +{ + config = { + xresources.properties = { }; + + nmt.script = '' + assertPathNotExists home-files/.Xresources + ''; + }; +}