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