#!/usr/bin/bash
set -e
# Tests write into CWD
DIR=$(mktemp -d)
cp -a --dereference /usr/libexec/perl-Mail-DMARC/* "$DIR"
pushd "$DIR"
unset HTTP_ACCEPT_ENCODING MAIL_DMARC_CONFIG_FILE
prove -I .
popd
rm -r "$DIR"
