diff --git a/tests/test.bats b/tests/test.bats index 1a31d76..a0a7e27 100644 --- a/tests/test.bats +++ b/tests/test.bats @@ -45,6 +45,7 @@ teardown() { health_checks } + @test "install from release" { set -eu -o pipefail cd ${TESTDIR} || ( printf "unable to cd to ${TESTDIR}\n" && exit 1 ) @@ -54,3 +55,14 @@ teardown() { health_checks } +@test "install from directory with nonstandard port" { + set -eu -o pipefail + cd ${TESTDIR} + ddev config --router-http-port=8080 --router-https-port=8443 + echo "# ddev get ${DIR} with project ${PROJNAME} in ${TESTDIR} ($(pwd))" >&3 + ddev get ${DIR} >/dev/null 2>&1 + ddev mutagen sync >/dev/null 2>&1 + health_checks +} + +