Fix more tests.

This commit is contained in:
James Cole 2016-04-06 20:52:22 +02:00
parent 8b5a775dc5
commit 30e3ed6410
No known key found for this signature in database
GPG Key ID: C16961E655E74B5E
2 changed files with 6 additions and 5 deletions

View File

@ -86,7 +86,7 @@ class TagRepository implements TagRepositoryInterface
*
* @return bool
*/
public function connect(TransactionJournal $journal, Tag $tag): Collection
public function connect(TransactionJournal $journal, Tag $tag): bool
{
/*
* Already connected:

View File

@ -6,6 +6,7 @@
* This software may be modified and distributed under the terms
* of the MIT license. See the LICENSE file for details.
*/
use Illuminate\Support\Collection;
use Symfony\Component\HttpFoundation\File\UploadedFile;
@ -177,10 +178,10 @@ class CsvControllerTest extends TestCase
$importer->shouldReceive('setData')->once()->with($data);
$importer->shouldReceive('run')->once()->withNoArgs();
$importer->shouldReceive('getRows')->once()->withNoArgs();
$importer->shouldReceive('getErrors')->once()->withNoArgs();
$importer->shouldReceive('getImported')->once()->withNoArgs();
$importer->shouldReceive('getJournals')->once()->withNoArgs();
$importer->shouldReceive('getRows')->once()->withNoArgs()->andReturn(0);
$importer->shouldReceive('getErrors')->once()->withNoArgs()->andReturn([]);
$importer->shouldReceive('getImported')->once()->withNoArgs()->andReturn(0);
$importer->shouldReceive('getJournals')->once()->withNoArgs()->andReturn(new Collection);
$this->call('GET', '/csv/process');
$this->assertResponseStatus(200);