Fixes tests.

This commit is contained in:
James Cole 2017-02-24 21:01:33 +01:00
parent 3d4feff7de
commit fc2cee7a54
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
3 changed files with 16 additions and 0 deletions

View File

@ -68,6 +68,7 @@ class MetaPieChart implements MetaPieChartInterface
$this->accounts = new Collection;
$this->budgets = new Collection;
$this->categories = new Collection;
$this->tags = new Collection;
}
/**

View File

@ -18,6 +18,7 @@ class AccountControllerTest extends TestCase
{
/**
* @covers \FireflyIII\Http\Controllers\Chart\AccountController::expenseAccounts
* @covers \FireflyIII\Generator\Chart\Basic\GeneratorInterface::singleSet
* @dataProvider dateRangeProvider
*
* @param string $range
@ -61,6 +62,8 @@ class AccountControllerTest extends TestCase
/**
* @covers \FireflyIII\Http\Controllers\Chart\AccountController::frontpage
* @covers \FireflyIII\Http\Controllers\Chart\AccountController::__construct
* @covers \FireflyIII\Http\Controllers\Chart\AccountController::accountBalanceChart
* @covers \FireflyIII\Generator\Chart\Basic\GeneratorInterface::multiSet
* @dataProvider dateRangeProvider
*
* @param string $range

View File

@ -67,6 +67,18 @@ class TransactionControllerTest extends TestCase
$response->assertStatus(200);
}
/**
* @covers \FireflyIII\Http\Controllers\Controller::redirectToAccount
* @covers \FireflyIII\Http\Controllers\TransactionController::show
*/
public function testShowOpeningBalance()
{
$this->be($this->user());
$journal = $this->user()->transactionJournals()->where('transaction_type_id',4)->first();
$response = $this->get(route('transactions.show', [$journal->id]));
$response->assertStatus(302);
}
/**
* @covers \FireflyIII\Http\Controllers\TransactionController::show
*/