tests: fix issue where the test app wasn't being removed on test teardown
This commit is contained in:
@@ -3,17 +3,18 @@ load test_helper
|
|||||||
|
|
||||||
setup() {
|
setup() {
|
||||||
dokku apps:create my-app
|
dokku apps:create my-app
|
||||||
dokku "$PLUGIN_COMMAND_PREFIX:create" l
|
dokku "$PLUGIN_COMMAND_PREFIX:create" ls
|
||||||
dokku "$PLUGIN_COMMAND_PREFIX:link" l my-app >&2
|
dokku "$PLUGIN_COMMAND_PREFIX:link" ls my-app >&2
|
||||||
}
|
}
|
||||||
|
|
||||||
teardown() {
|
teardown() {
|
||||||
dokku "$PLUGIN_COMMAND_PREFIX:unlink" l my-app >&2
|
dokku "$PLUGIN_COMMAND_PREFIX:unlink" ls my-app >&2
|
||||||
dokku --force "$PLUGIN_COMMAND_PREFIX:destroy" l
|
dokku --force "$PLUGIN_COMMAND_PREFIX:destroy" ls
|
||||||
|
dokku --force apps:destroy my-app
|
||||||
}
|
}
|
||||||
|
|
||||||
@test "($PLUGIN_COMMAND_PREFIX:hook:pre-delete) removes app from links file when destroying app" {
|
@test "($PLUGIN_COMMAND_PREFIX:hook:pre-delete) removes app from links file when destroying app" {
|
||||||
[[ -n $(<"$PLUGIN_DATA_ROOT/l/LINKS") ]]
|
[[ -n $(<"$PLUGIN_DATA_ROOT/ls/LINKS") ]]
|
||||||
dokku --force apps:destroy my-app
|
dokku --force apps:destroy my-app
|
||||||
[[ -z $(<"$PLUGIN_DATA_ROOT/l/LINKS") ]]
|
[[ -z $(<"$PLUGIN_DATA_ROOT/ls/LINKS") ]]
|
||||||
}
|
}
|
||||||
|
|||||||
Reference in New Issue
Block a user