mirror of
https://github.com/friendica/friendica
synced 2024-11-09 17:02:54 +00:00
Fix tests?
This commit is contained in:
parent
9f027df909
commit
5cc1f87511
1 changed files with 13 additions and 4 deletions
|
@ -106,7 +106,10 @@ class UserTest extends MockedTest
|
|||
['uid', 'username', 'nickname'],
|
||||
[
|
||||
'parent-uid' => $this->parent['uid'],
|
||||
'account_removed' => false
|
||||
'verified' => true,
|
||||
'blocked' => false,
|
||||
'account_removed' => false,
|
||||
'account_expired' => false
|
||||
], [])->andReturn('objectReturn')->once();
|
||||
$this->dbMock->shouldReceive('isResult')->with('objectReturn')->andReturn(true)->once();
|
||||
$this->dbMock->shouldReceive('toArray')->with('objectReturn', true, 0)->andReturn([$this->child])->once();
|
||||
|
@ -139,8 +142,11 @@ class UserTest extends MockedTest
|
|||
$this->dbMock->shouldReceive('select')->with('user',
|
||||
['uid', 'username', 'nickname'],
|
||||
[
|
||||
'uid' => $this->parent['uid'],
|
||||
'account_removed' => false
|
||||
'uid' => $this->parent['uid'],
|
||||
'verified' => true,
|
||||
'blocked' => false,
|
||||
'account_removed' => false,
|
||||
'account_expired' => false
|
||||
], [])->andReturn('objectReturn')->once();
|
||||
$this->dbMock->shouldReceive('isResult')->with('objectReturn')->andReturn(true)->once();
|
||||
$this->dbMock->shouldReceive('toArray')->with('objectReturn', true, 0)->andReturn([$this->parent])->once();
|
||||
|
@ -150,7 +156,10 @@ class UserTest extends MockedTest
|
|||
['uid', 'username', 'nickname'],
|
||||
[
|
||||
'parent-uid' => $this->parent['uid'],
|
||||
'account_removed' => false
|
||||
'verified' => true,
|
||||
'blocked' => false,
|
||||
'account_removed' => false,
|
||||
'account_expired' => false
|
||||
], [])->andReturn('objectReturn')->once();
|
||||
$this->dbMock->shouldReceive('isResult')->with('objectReturn')->andReturn(true)->once();
|
||||
$this->dbMock->shouldReceive('toArray')->with('objectReturn', true, 0)->andReturn([$this->child, $this->manage])->once();
|
||||
|
|
Loading…
Reference in a new issue