feat: update patch release of mysql

This commit is contained in:
Jose Diaz-Gonzalez
2019-11-22 19:19:01 -05:00
parent fa0f26d466
commit d5004ccb9b
3 changed files with 5 additions and 5 deletions

View File

@@ -11,20 +11,20 @@ teardown() {
@test "($PLUGIN_COMMAND_PREFIX:list) with no exposed ports, no linked apps" {
run dokku "$PLUGIN_COMMAND_PREFIX:list"
assert_contains "${lines[*]}" "l mysql:5.7.26 running - -"
assert_contains "${lines[*]}" "l mysql:5.7.28 running - -"
}
@test "($PLUGIN_COMMAND_PREFIX:list) with exposed ports" {
dokku "$PLUGIN_COMMAND_PREFIX:expose" l 4242
run dokku "$PLUGIN_COMMAND_PREFIX:list"
assert_contains "${lines[*]}" "l mysql:5.7.26 running 3306->4242 -"
assert_contains "${lines[*]}" "l mysql:5.7.28 running 3306->4242 -"
}
@test "($PLUGIN_COMMAND_PREFIX:list) with linked app" {
dokku apps:create my_app
dokku "$PLUGIN_COMMAND_PREFIX:link" l my_app
run dokku "$PLUGIN_COMMAND_PREFIX:list"
assert_contains "${lines[*]}" "l mysql:5.7.26 running - my_app"
assert_contains "${lines[*]}" "l mysql:5.7.28 running - my_app"
dokku --force apps:destroy my_app
}