added test suite

This commit is contained in:
jankapunkt 2018-02-07 12:30:06 +01:00
parent 3f6ba173fd
commit deb53a36da

13
tests/testall.sh Executable file
View File

@ -0,0 +1,13 @@
#!/usr/bin/env bash
set -e
ROOT=$(pwd)
$ROOT/tests/test.sh $ROOT/classic
$ROOT/tests/test.sh $ROOT/modern
$ROOT/tests/test.sh $ROOT/two_column
$ROOT/tests/test.sh $ROOT/infographics
echo 'all tests passed'
exit 0