1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-07-17 17:08:37 +00:00

Fix tests

This commit is contained in:
Jeremy Benoist 2016-01-21 12:24:35 +01:00
parent 67c99849ae
commit 2a58606983
2 changed files with 11 additions and 2 deletions

View file

@ -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);