Commit 5450b318 authored by Taylor Otwell's avatar Taylor Otwell

Merge pull request #3725 from laravel/phpunit

Fixed up the phpunit config
parents 72581c0b 28ea52d1
...@@ -10,12 +10,15 @@ ...@@ -10,12 +10,15 @@
stopOnFailure="false"> stopOnFailure="false">
<testsuites> <testsuites>
<testsuite name="Application Test Suite"> <testsuite name="Application Test Suite">
<directory>./tests/</directory> <directory suffix="Test.php">./tests</directory>
</testsuite> </testsuite>
</testsuites> </testsuites>
<filter> <filter>
<whitelist> <whitelist processUncoveredFilesFromWhitelist="true">
<directory suffix=".php">app/</directory> <directory suffix=".php">./app</directory>
<exclude>
<file>./app/Http/routes.php</file>
</exclude>
</whitelist> </whitelist>
</filter> </filter>
<php> <php>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment