Improve checks & add tests

This commit is contained in:
Jeremy Benoist
2019-01-28 06:03:16 +01:00
parent a2e60dd393
commit 8d082488e9
2 changed files with 10 additions and 3 deletions

View File

@ -226,6 +226,13 @@ class PocketImportTest extends TestCase
->method('getRepository')
->willReturn($entryRepo);
$this->em
->expects($this->any())
->method('persist')
->with($this->callback(function ($persistedEntry) {
return $persistedEntry->isArchived() && $persistedEntry->isStarred();
}));
$entry = new Entry($this->user);
$this->contentProxy