Moved a lot of files outside of the root.

This commit is contained in:
James Cole
2016-04-05 21:08:36 +02:00
parent 7c23571806
commit 27b0c7f425
13 changed files with 0 additions and 0 deletions

63
_development/cover.sh Executable file
View File

@@ -0,0 +1,63 @@
#!/bin/bash
# set testing environment
cp .env.testing .env
# set cover:
cp phpunit.cover.xml phpunit.xml
# delete test databases:
if [ -f storage/database/testing.db ]
then
echo "Will not remove test db"
# rm storage/database/testing.db
fi
if [ -f storage/database/testing-copy.db ]
then
echo "Will not remove test db"
# rm storage/database/testing-copy.db
fi
# test!
if [ -z "$1" ]
then
echo "Running all tests..."
phpunit
fi
# test selective..
dirs=("acceptance/Controllers" "acceptance/Controllers/Auth" "acceptance/Controllers/Chart" "unit")
#
if [ ! -z "$1" ]
then
for i in "${dirs[@]}"
do
firstFile="./tests/$i/$1.php"
secondFile="./tests/$i/$1Test.php"
if [ -f "$firstFile" ]
then
# run it!
echo "Now running $firstFile"
phpunit $firstFile
result=$?
fi
if [ -f "$secondFile" ]
then
# run it!
echo "Now running $secondFile"
phpunit $secondFile
result=$?
fi
done
fi
# restore .env file
cp .env.local .env
# restore cover
cp phpunit.default.xml phpunit.xml
exit ${result}