1
0
Fork 0
mirror of synced 2024-07-02 05:21:10 -04:00
dotbot/test/tests/create-relative.bash

16 lines
241 B
Bash
Raw Normal View History

2019-10-06 01:13:51 -04:00
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 ]
'