depot/third_party/home-manager/tests/modules/programs/gh-dash/config.nix
Default email 75fa0ae5af Project import generated by Copybara.
GitOrigin-RevId: c3ab5ea047e6dc73df530948f7367455749d8906
2023-08-08 12:19:01 +02:00

26 lines
514 B
Nix

{ ... }:
{
programs.gh-dash = {
enable = true;
settings = {
prSections = [{
title = "My Pull Requests";
filters = "is:open author:@me";
}];
};
};
test.stubs.gh = { };
nmt.script = ''
assertFileExists home-files/.config/gh-dash/config.yml
assertFileContent home-files/.config/gh-dash/config.yml ${
builtins.toFile "config-file.yml" ''
prSections:
- filters: is:open author:@me
title: My Pull Requests
''
}
'';
}