1
0
Fork 0
mirror of synced 2024-05-25 11:31:12 -04:00
yadm/test/102_accept_clean.bats
2016-04-07 08:16:22 -05:00

20 lines
423 B
Bash

load common
load_fixtures
status=;lines=; #; populated by bats run()
@test "Command 'clean'" {
echo "
When 'clean' command is provided,
Do nothing, this is a dangerous Git command when managing dot files
Report the command as disabled
Exit with 1
"
#; run yadm with 'clean' command
run "$T_YADM" clean
#; validate status and output
[ $status -eq 1 ]
[[ "${lines[0]}" =~ disabled ]]
}