abra/tests/integration/app_config.bats
decentral1se 008582c3d9
All checks were successful
continuous-integration/drone/push Build is passing
test: fixes for test suite post-cobra migrate
See toolshed/organising#650
2024-12-27 20:44:07 +01:00

25 lines
350 B
Bash

#!/usr/bin/env bash
setup_file(){
load "$PWD/tests/integration/helpers/common"
_common_setup
_add_server
}
teardown_file(){
_rm_server
}
setup(){
load "$PWD/tests/integration/helpers/common"
_common_setup
}
@test "validate app argument" {
run $ABRA app config
assert_failure
run $ABRA app config DOESNTEXIST
assert_failure
}