#!/usr/bin/env bash
# script/test: run the test suite.
set -euo pipefail

ROOT="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd -P)"

main() {
    cd "$ROOT"
    echo "No tests defined."
}

main "$@"
