drop support for create/delete in favor of standard apps:create and apps:destroy

This commit is contained in:
Michael Hobbs
2015-01-17 16:24:50 -08:00
parent 666f2d7434
commit 2ff2ca55c1
2 changed files with 9 additions and 8 deletions

View File

@@ -165,13 +165,13 @@ teardown() {
assert_success
}
@test "dokku client (create/delete)" {
@test "dokku client (apps:create AND apps:destroy)" {
setup_client_repo
run bash -c "${BATS_TEST_DIRNAME}/../../contrib/dokku_client.sh create"
run bash -c "${BATS_TEST_DIRNAME}/../../contrib/dokku_client.sh apps:create"
echo "output: "$output
echo "status: "$status
assert_success
run bash -c "${BATS_TEST_DIRNAME}/../../contrib/dokku_client.sh delete force"
run bash -c "${BATS_TEST_DIRNAME}/../../contrib/dokku_client.sh apps:destroy force"
echo "output: "$output
echo "status: "$status
assert_success