1
0
Fork 0
mirror of synced 2024-06-16 06:01:09 -04:00
dotbot/test/tests/link-ignore-missing.bash
2018-05-25 22:05:21 +02:00

15 lines
265 B
Bash

test_description='link is created even if source is missing'
. '../test-lib.bash'
test_expect_success 'run' '
run_dotbot <<EOF
- link:
missing_link:
source: missing
ignore-missing: true
EOF
'
test_expect_success 'test' '
test -L missing_link
'