mirror of
https://github.com/dokku/dokku.git
synced 2026-02-24 20:19:52 +01:00
22 lines
337 B
Bash
22 lines
337 B
Bash
#!/usr/bin/env bats
|
|
|
|
load test_helper
|
|
|
|
setup() {
|
|
create_app
|
|
}
|
|
|
|
teardown() {
|
|
destroy_app
|
|
}
|
|
|
|
@test "(build-env) special characters" {
|
|
run dokku config:set $TEST_APP NEWRELIC_APP_NAME="$TEST_APP (Staging)"
|
|
echo "output: "$output
|
|
echo "status: "$status
|
|
assert_success
|
|
deploy_app
|
|
run dokku config $TEST_APP
|
|
assert_success
|
|
}
|