notmuch: add basic test case

This commit is contained in:
Robert Helgesson 2020-01-26 11:25:12 +01:00
parent 95c8007b8f
commit 4893d1b4d4
No known key found for this signature in database
GPG Key ID: 36BDAA14C2797E89
4 changed files with 56 additions and 0 deletions

View File

@ -46,6 +46,7 @@ import nmt {
// import ./modules/programs/git
// import ./modules/programs/gpg
// import ./modules/programs/newsboat
// import ./modules/programs/notmuch
// import ./modules/programs/readline
// import ./modules/programs/ssh
// import ./modules/programs/tmux

View File

@ -0,0 +1,19 @@
# Generated by Home Manager.
[database]
path=/home/hm-user/Mail
[maildir]
synchronize_flags=true
[new]
ignore=
tags=unread;inbox
[search]
exclude_tags=deleted;spam
[user]
name=H. M. Test
other_email=;hm@example.org;
primary_email=hm@example.com

View File

@ -0,0 +1,33 @@
{ config, lib, pkgs, ... }:
with lib;
{
imports = [ ../../accounts/email-test-accounts.nix ];
config = {
home.username = "hm-user";
home.homeDirectory = "/home/hm-user";
programs.notmuch = {
enable = true;
};
accounts.email.accounts = {
"hm@example.com" = {
notmuch.enable = true;
primary = true;
};
hm-account.notmuch = {
enable = true;
};
};
nmt.script = ''
assertFileExists home-files/.config/notmuch/notmuchrc
assertFileContent home-files/.config/notmuch/notmuchrc \
${./basic-config-expected.conf}
'';
};
}

View File

@ -0,0 +1,3 @@
{
notmuch-basic-config = ./basic-config.nix;
}