diff options
author | Cole Helbling <cole.e.helbling@outlook.com> | 2023-01-13 07:57:55 -0800 |
---|---|---|
committer | Cole Helbling <cole.e.helbling@outlook.com> | 2023-01-13 07:57:55 -0800 |
commit | 7f195d058c0077a98c48116c7198d97ab194c74a (patch) | |
tree | da41779d8342ee9d4f07ccde437541439bdb2ea7 | |
parent | 1fc74afbbae1ae3e78e3c0d2096e81c1e24f9d52 (diff) |
tests/config: test retrieving a single setting's value with `nix show-config <setting>`
-rw-r--r-- | tests/config.sh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/config.sh b/tests/config.sh index 3d0da3cef..723f575ed 100644 --- a/tests/config.sh +++ b/tests/config.sh @@ -51,3 +51,8 @@ exp_features=$(nix show-config | grep '^experimental-features' | cut -d '=' -f 2 [[ $prev != $exp_cores ]] [[ $exp_cores == "4242" ]] [[ $exp_features == "flakes nix-command" ]] + +# Test that it's possible to retrieve a single setting's value +val=$(nix show-config | grep '^warn-dirty' | cut -d '=' -f 2 | xargs) +val2=$(nix show-config warn-dirty) +[[ $val == $val2 ]] |