#!/bin/sh -e

pkg=r-cran-praise

if [ "$ADTTMP" = "" ] ; then
  ADTTMP=`mktemp -d /tmp/${pkg}-test.XXXXXX`
fi
cd $ADTTMP
cp -a /usr/share/doc/${pkg}/tests/* $ADTTMP
find . -name "*.gz" -exec gunzip \{\} \;
# Make sure we are using C locale to pass all tests
LC_ALL=C R --no-save < testthat.R
rm -rf $ADTTMP/*
