1
0
Fork 0
mirror of synced 2024-06-25 18:31:09 -04:00
dotbot/test/tests/link-ignore-missing.bash

15 lines
265 B
Bash
Raw Normal View History

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
'