You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
335 B
23 lines
335 B
test_description='create folders'
|
|
. '../test-lib.bash'
|
|
|
|
test_expect_success 'run' '
|
|
run_dotbot <<EOF
|
|
- create:
|
|
- ~/somedir
|
|
- ~/nested/somedir
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'test' '
|
|
[ -d ~/somedir ] &&
|
|
[ -d ~/nested/somedir ]
|
|
'
|
|
|
|
test_expect_success 'run 2' '
|
|
run_dotbot <<EOF
|
|
- create:
|
|
- ~/somedir
|
|
- ~/nested/somedir
|
|
EOF
|
|
'
|
|
|