mirror of
https://github.com/wallabag/wallabag.git
synced 2024-12-23 08:06:33 +00:00
Fix tests
This commit is contained in:
parent
67c99849ae
commit
2a58606983
2 changed files with 11 additions and 2 deletions
|
@ -81,6 +81,7 @@ class InstallCommandTest extends WallabagCoreTestCase
|
|||
|
||||
$this->assertContains('Step 1 of 4. Checking system requirements.', $tester->getDisplay());
|
||||
$this->assertContains('Step 2 of 4. Setting up database.', $tester->getDisplay());
|
||||
$this->assertContains('Droping database, creating database and schema, clearing the cache', $tester->getDisplay());
|
||||
$this->assertContains('Step 3 of 4. Administration setup.', $tester->getDisplay());
|
||||
$this->assertContains('Step 4 of 4. Installing assets.', $tester->getDisplay());
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@ class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase
|
|||
protected $mailer;
|
||||
protected $spool;
|
||||
protected $twig;
|
||||
protected $config;
|
||||
|
||||
protected function setUp()
|
||||
{
|
||||
|
@ -43,6 +44,14 @@ class AuthCodeMailerTest extends \PHPUnit_Framework_TestCase
|
|||
TWIG;
|
||||
|
||||
$this->twig = new \Twig_Environment(new \Twig_Loader_Array(array('@WallabagUserBundle/Resources/views/TwoFactor/email_auth_code.html.twig' => $twigTemplate)));
|
||||
|
||||
$this->config = $this->getMockBuilder('Craue\ConfigBundle\Util\Config')
|
||||
->disableOriginalConstructor()
|
||||
->getMock();
|
||||
|
||||
$this->config->expects($this->any())
|
||||
->method('get')
|
||||
->willReturn('http://0.0.0.0/support');
|
||||
}
|
||||
|
||||
public function testSendEmail()
|
||||
|
@ -58,8 +67,7 @@ TWIG;
|
|||
$this->twig,
|
||||
'nobody@test.io',
|
||||
'wallabag test',
|
||||
'http://0.0.0.0/support',
|
||||
'http://0.0.0.0'
|
||||
$this->config
|
||||
);
|
||||
|
||||
$authCodeMailer->sendAuthCode($user);
|
||||
|
|
Loading…
Reference in a new issue