summaryrefslogtreecommitdiffstats
path: root/test/run
blob: 758e36b461af228d26cf8d109660bb6d3e6b4e2e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/usr/bin/env bash
set -euo pipefail

export SCRIPT_DIR="$(cd "$(dirname "$0")/.." && pwd)"
source "${SCRIPT_DIR}/test/core.sh"

tests="$(find "$SCRIPT_DIR/test" -iname '*_test.sh')"

for test in $tests; do
   source "$test"
done

test::finish