Add a test for `nix describe-stores`

Doesn't test much, but at least ensures that the command runs properly
This commit is contained in:
regnat 2020-09-16 13:52:15 +02:00
parent d72927aa7a
commit c29624bf7d
2 changed files with 9 additions and 0 deletions

8
tests/describe-stores.sh Normal file
View File

@ -0,0 +1,8 @@
source common.sh
# Query an arbitrary value in `nix describe-stores --json`'s output just to
# check that it has the right structure
[[ $(nix --experimental-features 'nix-command flakes' describe-stores --json | jq '.["SSH Store"]["compress"]["defaultValue"]') == false ]]
# Ensure that the output of `nix describe-stores` isn't empty
[[ -n $(nix --experimental-features 'nix-command flakes' describe-stores) ]]

View File

@ -32,6 +32,7 @@ nix_tests = \
post-hook.sh \
function-trace.sh \
recursive.sh \
describe-stores.sh \
flakes.sh \
content-addressed.sh
# parallel.sh