be($this->user());
$this->call('get', route('transactions.split.edit', [18]));
$this->assertResponseStatus(200);
// has bread crumb
$this->see('
');
}
/**
* @covers \FireflyIII\Http\Controllers\Transaction\SplitController::update
* Implement testUpdate().
*/
public function testUpdate()
{
$this->session(['transactions.edit-split.url' => 'http://localhost']);
$data = [
'id' => 18,
'what' => 'deposit',
'journal_description' => 'Updated salary',
'currency_id' => 1,
'journal_destination_account_id' => 1,
'journal_amount' => 1591,
'date' => '2014-01-24',
'tags' => '',
'transactions' => [
[
'description' => 'Split #1',
'source_account_name' => 'Job',
'amount' => 1591,
'category' => '',
],
],
];
$this->be($this->user());
$this->call('post', route('transactions.split.update', [18]), $data);
$this->assertResponseStatus(302);
$this->assertSessionHas('success');
// journal is updated?
$this->call('get', route('transactions.show', [18]));
$this->assertResponseStatus(200);
$this->see('Updated salary');
// has bread crumb
$this->see('');
}
}