1
0
Fork 0
mirror of synced 2024-06-30 04:31:09 -04:00
dotbot/test/tests/create-relative.bash
2019-10-06 01:13:51 -04:00

16 lines
241 B
Bash

test_description='relative creating works'
. '../test-lib.bash'
test_expect_success 'run' '
run_dotbot <<EOF
- create:
- ~/somedir
- ~/nested/somedir
EOF
'
test_expect_success 'test' '
[ -d ~/somedir ] &&
[ -d ~/nested/somedir ]
'