1
0
mirror of https://github.com/nix-community/home-manager synced 2024-07-03 11:53:27 +02:00
home-manager/tests/modules/programs/gh/extensions.nix
2022-08-12 20:49:50 +02:00

28 lines
491 B
Nix

{ config, lib, pkgs, ... }:
{
programs.gh = {
enable = true;
extensions = [ pkgs.gh-eco ];
};
test.stubs = {
gh = { };
gh-eco = {
name = "gh-eco";
buildScript = ''
mkdir -p $out/bin
touch $out/bin/gh-eco
chmod +x $out/bin/gh-eco
'';
outPath = null;
};
};
nmt.script = ''
gh_eco=home-files/.local/share/gh/extensions/gh-eco/gh-eco
assertFileExists "$gh_eco"
assertFileIsExecutable "$gh_eco"
'';
}