1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-01 10:58:31 +02:00
home-manager/tests/modules/programs/abook/with-settings.nix
Robert Helgesson cb09a968e9
tests: add option test.stubs
This option provides a more convenient way to overlay dummy packages.
It also adds a function `config.lib.test.mkStubPackage` that can,
e.g., be used for `package` options.
2021-09-26 23:26:38 +02:00

39 lines
863 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs.abook = {
enable = true;
extraConfig = ''
# Defining a new custom field
# -----------------------------
field pager = Pager
field address_lines = Address, list
field birthday = Birthday, date
# Defining a view/tab
# ---------------------
view CONTACT = name, email
view ADDRESS = address_lines, city, state, zip, country
view PHONE = phone, workphone, pager, mobile, fax
view OTHER = url, birthday
# Automatically save database on exit
set autosave=true
'';
};
test.stubs.abook = { };
nmt.script = ''
assertFileExists home-files/.config/abook/abookrc
assertFileContent home-files/.config/abook/abookrc ${./with-settings.cfg}
'';
};
}