A tool that bootstraps your dotfiles
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.
|
test_description='json config with tabs allowed'
|
|
. '../test-lib.bash'
|
|
|
|
test_expect_success 'setup' '
|
|
echo "grape" > ${DOTFILES}/h
|
|
'
|
|
|
|
test_expect_success 'run' '
|
|
run_dotbot_json <<EOF
|
|
[{
|
|
"link": {
|
|
"~/.i": "h"
|
|
}
|
|
}]
|
|
EOF
|
|
'
|
|
|
|
test_expect_success 'test' '
|
|
grep "grape" ~/.i
|
|
'
|
|
|