1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-28 09:28:32 +02:00
home-manager/tests/modules/programs/autorandr/scale.nix
Robert Helgesson ef4370bedc
tests: allow testing assertions
By default tests are expected to produce no assertion.

This also updates the existing tests to match.
2021-02-07 22:48:22 +01:00

33 lines
592 B
Nix

{ config, pkgs, ... }:
{
config = {
programs.autorandr = {
enable = true;
profiles = {
default = {
fingerprint.DP1 = "XXX";
config.DP1 = {
scale = {
x = 2;
y = 4;
};
};
};
};
};
nmt.script = ''
config=home-files/.config/autorandr/default/config
assertFileExists $config
assertFileContent $config \
${
pkgs.writeText "scale-expected.conf" ''
output DP1
scale 2x4''
}
'';
};
}