1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-06 06:53:33 +02:00
home-manager/tests/modules/programs/mpv/mpv-invalid-settings.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

26 lines
559 B
Nix

{ config, lib, pkgs, ... }:
{
config = {
programs.mpv = {
enable = true;
package = pkgs.mpvDummy;
scripts = [ pkgs.mpvScript ];
};
nixpkgs.overlays = [
(self: super: {
mpvDummy = pkgs.runCommandLocal "mpv" { } "mkdir $out";
mpvScript =
pkgs.runCommandLocal "mpvScript" { scriptName = "something"; }
"mkdir $out";
})
];
test.asserts.assertions.expected = [
''
The programs.mpv "package" option is mutually exclusive with "scripts" option.''
];
};
}