Files
dokku-docker-compose/tests/test_helper.bash
2025-07-17 21:05:35 -04:00

22 lines
487 B
Bash

#!/usr/bin/env bash
# Set the path to the BATS helpers
export BATS_HELPER_PATH="${BATS_TEST_DIRNAME}/test_helper"
# Load BATS helper libraries
load "${BATS_HELPER_PATH}/bats-support/load.bash"
load "${BATS_HELPER_PATH}/bats-assert/load.bash"
load "${BATS_HELPER_PATH}/bats-file/load.bash"
# Setup function that runs before each test
setup() {
# Add any test setup code here
:
}
# Teardown function that runs after each test
teardown() {
# Add any test teardown code here
:
}