#!/usr/bin/bash
set -e
# Many tests write into CWD, or just open an existing database read-write.
DIR=$(mktemp -d)
cp -a /usr/libexec/perl-ORLite/* "$DIR"
pushd "$DIR"
unset AUTHOR_TESTING
prove
popd
rm -r "$DIR"
