depot/third_party/home-manager/tests/modules/programs/pls/bash.nix
Default email 2eafb8192e Project import generated by Copybara.
GitOrigin-RevId: 176e455371a8371586e8a3ff0d56ee9f3ca2324e
2023-01-10 02:35:00 -07:00

29 lines
591 B
Nix

{ config, lib, pkgs, ... }:
with lib;
{
config = {
programs = {
bash.enable = true;
pls = {
enable = true;
enableAliases = true;
package = config.lib.test.mkStubPackage { outPath = "@pls@"; };
};
};
test.stubs.pls = { };
nmt.script = ''
assertFileExists home-files/.bashrc
assertFileContains \
home-files/.bashrc \
"alias ls='@pls@/bin/pls'"
assertFileContains \
home-files/.bashrc \
"alias ll='@pls@/bin/pls -d perms -d user -d group -d size -d mtime -d git'"
'';
};
}