mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 04:00:36 +01:00
12 lines
263 B
Bash
12 lines
263 B
Bash
#!/usr/bin/env bats
|
|
|
|
load ../unit/test_helper
|
|
|
|
@test "deploy php app" {
|
|
skip "fails with /root/bin/jq: No such file or directory"
|
|
run bash -c "cd tests && ./test_deploy ./apps/php dokku.me"
|
|
echo "output: "$output
|
|
echo "status: "$status
|
|
assert_success
|
|
}
|