mirror of
https://github.com/nix-community/home-manager
synced 2024-11-09 04:39:44 +01:00
ef4370bedc
By default tests are expected to produce no assertion. This also updates the existing tests to match.
27 lines
627 B
Nix
27 lines
627 B
Nix
{ config, lib, pkgs, ... }:
|
|
|
|
with lib;
|
|
|
|
{
|
|
imports = [ ../../accounts/email-test-accounts.nix ];
|
|
|
|
config = {
|
|
programs.lieer.enable = true;
|
|
|
|
accounts.email.accounts."hm@example.com" = {
|
|
flavor = "gmail.com";
|
|
lieer.enable = true;
|
|
notmuch.enable = true;
|
|
};
|
|
|
|
nixpkgs.overlays = [
|
|
(self: super: { gmailieer = pkgs.writeScriptBin "dummy-gmailieer" ""; })
|
|
];
|
|
|
|
nmt.script = ''
|
|
assertFileExists home-files/Mail/hm@example.com/.gmailieer.json
|
|
assertFileContent home-files/Mail/hm@example.com/.gmailieer.json \
|
|
${./lieer-expected.json}
|
|
'';
|
|
};
|
|
}
|