2017-10-25 11:01:50 +00:00
|
|
|
source common.sh
|
|
|
|
|
|
|
|
clearStore
|
|
|
|
|
2020-06-25 16:26:34 +00:00
|
|
|
rm -f $TEST_ROOT/result
|
|
|
|
|
2020-01-21 20:14:13 +00:00
|
|
|
nix-build structured-attrs.nix -A all -o $TEST_ROOT/result
|
2017-10-25 11:01:50 +00:00
|
|
|
|
2020-01-21 20:14:13 +00:00
|
|
|
[[ $(cat $TEST_ROOT/result/foo) = bar ]]
|
|
|
|
[[ $(cat $TEST_ROOT/result-dev/foo) = foo ]]
|
2021-05-02 15:24:14 +00:00
|
|
|
|
|
|
|
export NIX_BUILD_SHELL=$SHELL
|
|
|
|
env NIX_PATH=nixpkgs=shell.nix nix-shell structured-attrs-shell.nix \
|
2021-05-09 15:46:16 +00:00
|
|
|
--run 'test -e .attrs.json; test "3" = "$(jq ".my.list|length" < $ATTRS_JSON_FILE)"'
|