Commit 86102ac4 authored by Taylor Otwell's avatar Taylor Otwell

update test runner.

parent 317e8db8
......@@ -12,9 +12,11 @@ class Runner extends Task {
*
* @return void
*/
public function run()
public function run($bundles = array())
{
$this->bundle(array(DEFAULT_BUNDLE));
if (count($bundles) == 0) $bundles = array(DEFAULT_BUNDLE);
$this->bundle($bundles);
}
/**
......
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