Skip to content

Commit

Permalink
Fixes test.
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Feb 13, 2016
1 parent dda44bf commit 7c1eac0
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions tests/MailerTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ public function testSendMethodViaMailgun()
$memory->shouldReceive('secureGet')->with('email.secret', null)->andReturn('auniquetoken')
->shouldReceive('get')->with('email.driver', 'mail')->andReturn('mailgun')
->shouldReceive('get')->with('email.domain', null)->andReturn('mailer.mailgun.org')
->shouldReceive('get')->with('email.guzzle', [])->andReturn([])
->shouldReceive('get')->with('email.from')->andReturn([
'address' => 'hello@orchestraplatform.com',
'name' => 'Orchestra Platform',
Expand Down Expand Up @@ -245,6 +246,7 @@ public function testSendMethodViaMandrill()

$memory->shouldReceive('secureGet')->with('email.secret', null)->andReturn('auniquetoken')
->shouldReceive('get')->with('email.driver', 'mail')->andReturn('mandrill')
->shouldReceive('get')->with('email.guzzle', [])->andReturn([])
->shouldReceive('get')->with('email.from')->andReturn([
'address' => 'hello@orchestraplatform.com',
'name' => 'Orchestra Platform',
Expand Down

0 comments on commit 7c1eac0

Please sign in to comment.