Skip to content

Commit

Permalink
Adding tests because of @robclancy's laziness.
Browse files Browse the repository at this point in the history
  • Loading branch information
taylorotwell committed Oct 20, 2013
1 parent b3a80c2 commit c30a4cb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/Database/DatabaseMigrationMakeCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ public function testBasicCreateGivesCreatorProperArgumentsWhenTableIsSet()
$command->setLaravel($app);
$creator->shouldReceive('create')->once()->with('create_foo', __DIR__.'/database/migrations', 'users', true);

$this->runCommand($command, array('name' => 'create_foo', '--table' => 'users', '--create' => true));
$this->runCommand($command, array('name' => 'create_foo', '--create' => 'users'));
}


Expand Down

0 comments on commit c30a4cb

Please sign in to comment.