c48d16cbce
This patch reverts the changes to the README made in
57265f78b4
and makes it so that Dotbot
supports JSON files with tab characters.
20 lines
275 B
Bash
20 lines
275 B
Bash
test_description='json config 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
|
|
'
|