forked from wallabag/wallabag
implement FosUser
This commit is contained in:
@ -75,7 +75,7 @@ class InstallCommandTest extends WallabagCoreTestCase
|
||||
->getMock();
|
||||
$dialog->expects($this->any())
|
||||
->method('ask')
|
||||
->will($this->returnValue('test'));
|
||||
->will($this->returnValue('test2'));
|
||||
$dialog->expects($this->any())
|
||||
->method('askConfirmation')
|
||||
->will($this->returnValue(true));
|
||||
|
||||
@ -266,7 +266,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
|
||||
array(
|
||||
array(
|
||||
'new_user[username]' => 'ad',
|
||||
'new_user[password]' => '',
|
||||
'new_user[password]' => 'mypassword',
|
||||
'new_user[email]' => '',
|
||||
),
|
||||
'This value is too short.',
|
||||
@ -274,7 +274,7 @@ class ConfigControllerTest extends WallabagCoreTestCase
|
||||
array(
|
||||
array(
|
||||
'new_user[username]' => 'wallace',
|
||||
'new_user[password]' => '',
|
||||
'new_user[password]' => 'mypassword',
|
||||
'new_user[email]' => 'test',
|
||||
),
|
||||
'This value is not a valid email address.',
|
||||
|
||||
Reference in New Issue
Block a user