mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2026-02-13 15:20:29 +00:00
Covered some more lines of code.
This commit is contained in:
@@ -106,6 +106,17 @@ class TransactionControllerCest
|
||||
$I->see(intval($journal->getAmount()));
|
||||
}
|
||||
|
||||
public function showGroupedJournal(FunctionalTester $I)
|
||||
{
|
||||
$journal = TransactionJournal::where('description', 'LIKE', 'Big expense in %')->first();
|
||||
|
||||
|
||||
$I->wantTo('see a grouped transaction');
|
||||
$I->amOnPage('/transaction/show/' . $journal->id);
|
||||
$I->see($journal->description);
|
||||
$I->see('Money for '.$journal->description);
|
||||
}
|
||||
|
||||
public function store(FunctionalTester $I)
|
||||
{
|
||||
$I->wantTo('store a transaction');
|
||||
|
||||
Reference in New Issue
Block a user