Merge pull request #6 from fabpot/phpunit-fix

moved phpunit.xml.dist to the root and fixed its content
This commit is contained in:
Eduardo Gulias Davis
2013-08-28 01:59:12 -07:00
2 changed files with 4 additions and 4 deletions
+1 -1
View File
@@ -6,4 +6,4 @@ php:
before_script:
- wget http://getcomposer.org/composer.phar
- php composer.phar install
script: phpunit -c tests/ tests/
script: phpunit
+3 -3
View File
@@ -9,18 +9,18 @@
processIsolation="false"
stopOnFailure="false"
syntaxCheck="false"
bootstrap="bootstrap.php"
bootstrap="tests/bootstrap.php"
>
<testsuites>
<testsuite name="EmailValidator Test Suite">
<directory>./tests/egulias/Tests/*.Test.php</directory>
<directory>./tests/egulias/Tests/</directory>
<exclude>./vendor/</exclude>
</testsuite>
</testsuites>
<filter>
<blacklist>
<directory>../vendor</directory>
<directory>./vendor</directory>
</blacklist>
</filter>
</phpunit>