pls: add module (#3285)
This commit is contained in:
parent
864ff685fe
commit
e7be7c4688
9 changed files with 150 additions and 0 deletions
29
tests/modules/programs/pls/bash.nix
Normal file
29
tests/modules/programs/pls/bash.nix
Normal file
|
|
@ -0,0 +1,29 @@
|
|||
{ 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'"
|
||||
'';
|
||||
};
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue