Merge pull request #1193 from franzliedke/patch-43
Delete phpunit.xml when unit testing
This commit is contained in:
commit
56f665bf6d
|
@ -86,9 +86,9 @@ protected function test()
|
||||||
|
|
||||||
// fix the spaced directories problem when using the command line
|
// fix the spaced directories problem when using the command line
|
||||||
// strings with spaces inside should be wrapped in quotes.
|
// strings with spaces inside should be wrapped in quotes.
|
||||||
$path = escapeshellarg($path);
|
$esc_path = escapeshellarg($path);
|
||||||
|
|
||||||
passthru('phpunit --configuration '.$path, $status);
|
passthru('phpunit --configuration '.$esc_path, $status);
|
||||||
|
|
||||||
@unlink($path);
|
@unlink($path);
|
||||||
|
|
||||||
|
|
|
@ -1,9 +0,0 @@
|
||||||
<phpunit colors="true"
|
|
||||||
bootstrap="/Users/taylor/Code/Laravel/framework/laravel/tests/phpunit.php"
|
|
||||||
backupGlobals="false">
|
|
||||||
<testsuites>
|
|
||||||
<testsuite name="Test Suite">
|
|
||||||
<directory suffix=".test.php">/Users/taylor/Code/Laravel/framework/laravel/tests/cases</directory>
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
</phpunit>
|
|
Loading…
Reference in New Issue