Took the time to fix the tests.

This commit is contained in:
James Cole
2015-04-30 17:32:00 +02:00
parent fd4e77ae0f
commit ee5c534ca3

View File

@@ -93,8 +93,7 @@ class PiggyBankControllerTest extends TestCase
public function testDestroy() public function testDestroy()
{ {
$piggyBank = FactoryMuffin::create('FireflyIII\Models\PiggyBank'); $piggyBank = FactoryMuffin::create('FireflyIII\Models\PiggyBank');
$user = FactoryMuffin::create('FireflyIII\User'); $this->be($piggyBank->account->user);
$this->be($user);
$repository = $this->mock('FireflyIII\Repositories\PiggyBank\PiggyBankRepositoryInterface'); $repository = $this->mock('FireflyIII\Repositories\PiggyBank\PiggyBankRepositoryInterface');
$repository->shouldReceive('destroy')->once()->withAnyArgs()->andReturn(true); $repository->shouldReceive('destroy')->once()->withAnyArgs()->andReturn(true);
@@ -109,8 +108,7 @@ class PiggyBankControllerTest extends TestCase
public function testEdit() public function testEdit()
{ {
$piggyBank = FactoryMuffin::create('FireflyIII\Models\PiggyBank'); $piggyBank = FactoryMuffin::create('FireflyIII\Models\PiggyBank');
$user = FactoryMuffin::create('FireflyIII\User'); $this->be($piggyBank->account->user);
$this->be($user);
$account = FactoryMuffin::create('FireflyIII\Models\Account'); $account = FactoryMuffin::create('FireflyIII\Models\Account');
$collection = new Collection([$account]); $collection = new Collection([$account]);
@@ -135,8 +133,7 @@ class PiggyBankControllerTest extends TestCase
public function testEditNullDate() public function testEditNullDate()
{ {
$piggyBank = FactoryMuffin::create('FireflyIII\Models\PiggyBank'); $piggyBank = FactoryMuffin::create('FireflyIII\Models\PiggyBank');
$user = FactoryMuffin::create('FireflyIII\User'); $this->be($piggyBank->account->user);
$this->be($user);
$piggyBank->targetdate = null; $piggyBank->targetdate = null;
$piggyBank->save(); $piggyBank->save();
$account = FactoryMuffin::create('FireflyIII\Models\Account'); $account = FactoryMuffin::create('FireflyIII\Models\Account');