rpicms

A CMS for the Raspberry Pi
git clone git://archive.git.mtrnord.blog/RpicmsTeam/rpicms.git
Log | Files | Refs | README | LICENSE

commit 058d86539026d473220361d24a89daccb5614995
parent 30b27bc4d26e646f25fb5aab8858eb89847e4ba1
Author: mtrnord <mtrnord1@gmail.com>
Date:   Sun,  4 Oct 2015 20:49:16 +0200

deactivate bootstrap. lets see what it does

Diffstat:
M.travis.yml | 2+-
Mphpunit_mysqli.xml | 2+-
Mtests/bootstrap.php | 2+-
3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/.travis.yml b/.travis.yml @@ -16,4 +16,4 @@ before_script: - chmod +x phpunit.phar - mysql -e 'create database RPICMS;' #RunTests -script: php phpunit.phar --configuration phpunit_$DB.xml --verbose --bootstrap tests/bootstrap.php +script: php phpunit.phar --configuration phpunit_$DB.xml --verbose diff --git a/phpunit_mysqli.xml b/phpunit_mysqli.xml @@ -1,6 +1,6 @@ <?xml version="1.0" encoding="UTF-8"?> -<phpunit bootstrap="tests/bootstrap.php" colors="true" verbose="true"> +<phpunit colors="true" verbose="true"> <php> <var name="db_dsn" value="mysqli:dbname=RPICMS;host=localhost"/> <var name="db_username" value="root"/> diff --git a/tests/bootstrap.php b/tests/bootstrap.php @@ -1,4 +1,4 @@ <?php include_once('AutoLoader.php'); -AutoLoader::registerDirectory('.'); +AutoLoader::registerDirectory('../tests');