1
0
mirror of https://github.com/nix-community/home-manager synced 2024-06-03 05:23:32 +02:00
home-manager/tests/modules/programs/fish/format-scripts.nix
mat ess ca48fced83
fish: format user and generated .fish files
Adds a `fishIndent` wrapper to pass fish scripts to the built in
`fish_indent` function.
2022-12-04 09:07:54 +01:00

51 lines
1012 B
Nix

{ config, pkgs, ... }:
let
expectedFunc = pkgs.writeText "func.fish" ''
function func
echo foo
end
'';
expectedFuncMulti = pkgs.writeText "func-multi.fish" ''
function func-multi
echo bar
if foo
bar
baz
end
end
'';
in {
config = {
programs.fish = {
enable = true;
formatFishScripts = true;
functions = {
func = ''echo "foo"'';
func-multi = ''
echo bar
if foo
bar
baz
end
'';
};
};
nmt.script = ''
assertFileExists home-files/.config/fish/functions/func.fish
echo ${expectedFunc}
assertFileContent home-files/.config/fish/functions/func.fish ${expectedFunc}
assertFileExists home-files/.config/fish/functions/func-multi.fish
echo ${expectedFuncMulti}
assertFileContent home-files/.config/fish/functions/func-multi.fish ${expectedFuncMulti}
'';
};
}