Commit 56f665bf authored by Jason Lewis's avatar Jason Lewis

Merge pull request #1193 from franzliedke/patch-43

Delete phpunit.xml when unit testing
parents 1c128131 9348046d
......@@ -86,9 +86,9 @@ class Runner extends Task {
// fix the spaced directories problem when using the command line
// 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);
......
<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>
\ No newline at end of file
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