that variable is required to suppress output when unit testing, also travis has composer preinstalled

This commit is contained in:
El RIDO 2016-07-05 17:52:32 +02:00
parent 0730d6b8d2
commit 36c1b17777
2 changed files with 2 additions and 3 deletions

View File

@ -7,8 +7,7 @@ php:
- hhvm
before_script:
- curl -s http://getcomposer.org/installer | php
- php composer.phar install -n
- composer install -n
script:
- cd tst && ../vendor/bin/phpunit

View File

@ -145,7 +145,7 @@ class zerobinTest extends PHPUnit_Framework_TestCase
file_put_contents(CONF, '');
ob_start();
new zerobin;
ob_get_contents();
$content = ob_get_contents();
}
/**