Fixed tests, added migration stuff, added default user.

This commit is contained in:
James Cole
2014-07-04 07:22:16 +02:00
parent 1836249407
commit abbbba219a
6 changed files with 180 additions and 1 deletions

View File

@@ -10,8 +10,13 @@ class HomeControllerTest extends TestCase
public function testIndex()
{
// mock:
View::shouldReceive('make')->with('index');
View::shouldReceive('make')->with('index')->once()->andReturn(\Mockery::self())
->shouldReceive('with')->once() // Pass a 'with' parameter
->with('count', 0)
;
Auth::shouldReceive('check')->andReturn(true);
$accounts = $this->mock('Firefly\Storage\Account\AccountRepositoryInterface');
$accounts->shouldReceive('count')->andReturn(0);
// call
$this->call('GET', '/');