mirror of
https://github.com/dokku/dokku.git
synced 2026-09-02 12:10:09 +02:00
11 lines
221 B
Plaintext
11 lines
221 B
Plaintext
|
|
#!/usr/bin/env bats
|
||
|
|
|
||
|
|
load ../unit/test_helper
|
||
|
|
|
||
|
|
@test "deploy python-flask app" {
|
||
|
|
run bash -c "cd tests && ./test_deploy ./apps/python-flask dokku.me"
|
||
|
|
echo "output: "$output
|
||
|
|
echo "status: "$status
|
||
|
|
assert_success
|
||
|
|
}
|