aboutsummaryrefslogtreecommitdiff
path: root/tests/functional/fmt.sh
diff options
context:
space:
mode:
Diffstat (limited to 'tests/functional/fmt.sh')
-rw-r--r--tests/functional/fmt.sh33
1 files changed, 33 insertions, 0 deletions
diff --git a/tests/functional/fmt.sh b/tests/functional/fmt.sh
new file mode 100644
index 000000000..3c1bd9989
--- /dev/null
+++ b/tests/functional/fmt.sh
@@ -0,0 +1,33 @@
+source common.sh
+
+clearStore
+rm -rf $TEST_HOME/.cache $TEST_HOME/.config $TEST_HOME/.local
+
+cp ./simple.nix ./simple.builder.sh ./fmt.simple.sh ./config.nix $TEST_HOME
+
+cd $TEST_HOME
+
+nix fmt --help | grep "Format"
+
+cat << EOF > flake.nix
+{
+ outputs = _: {
+ formatter.$system =
+ with import ./config.nix;
+ mkDerivation {
+ name = "formatter";
+ buildCommand = ''
+ mkdir -p \$out/bin
+ echo "#! ${shell}" > \$out/bin/formatter
+ cat \${./fmt.simple.sh} >> \$out/bin/formatter
+ chmod +x \$out/bin/formatter
+ '';
+ };
+ };
+}
+EOF
+nix fmt ./file ./folder | grep 'Formatting: ./file ./folder'
+nix flake check
+nix flake show | grep -P "package 'formatter'"
+
+clearStore