mirror of
https://github.com/dokku/dokku.git
synced 2025-12-29 00:25:08 +01:00
12 lines
245 B
Bash
12 lines
245 B
Bash
#!/usr/bin/env bats
|
|
|
|
load ../unit/test_helper
|
|
|
|
@test "deploy static app" {
|
|
skip "fails on apt-get update..."
|
|
run bash -c "cd tests && ./test_deploy ./apps/static dokku.me"
|
|
echo "output: "$output
|
|
echo "status: "$status
|
|
assert_success
|
|
}
|