#!/usr/bin/bash
set -e
# t/02_cache.t writes into PWD
DIR=$(mktemp -d)
cp -a /usr/libexec/perl-Template-Alloy/t "$DIR"
pushd "$DIR"
unset REQUEST_METHOD USE_TT
prove -I . -j "$(getconf _NPROCESSORS_ONLN)"
popd
rm -r "$DIR"
