update test runner.

This commit is contained in:
Taylor Otwell 2012-02-16 10:32:39 -06:00
parent 317e8db81f
commit 86102ac417
1 changed files with 4 additions and 2 deletions

View File

@ -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);
}
/**