1
0
Fork 0
mirror of synced 2024-07-26 18:11:13 -04:00

better test case for exit-on-failure

This commit is contained in:
Subho Banerjee 2021-09-12 19:40:37 -05:00
parent 4d2e1537f4
commit aaf5037725
No known key found for this signature in database
GPG key ID: 02AF2E69BA7B1C8B

View file

@ -2,18 +2,31 @@ test_description='test exit on failure'
. '../test-lib.bash'
test_expect_success 'setup' '
echo "apple" > ${DOTFILES}/f
echo "apple" > ${DOTFILES}/f1 &&
echo "orange" > ${DOTFILES}/f2 &&
echo "pineapple" > ${DOTFILES}/f3
'
test_expect_failure 'run' '
test_expect_failure 'run_case1' '
run_dotbot -x <<EOF
- shell:
- "this_is_not_a_command"
- link:
~/f:
~/f1:
EOF
'
test_expect_failure 'run_case2' '
run_dotbot -x <<EOF
- link:
~/f2:
- shell:
- "this_is_not_a_command"
- link:
~/f3:
EOF
'
test_expect_success 'test' '
[[ ! -f ~/f ]]
[[ ! -f ~/f1 ]] && [[ -f ~/f2 ]] && [[ ! -f ~/f3 ]]
'