-
-
Save muhamed-didovic/00e11a5544e95e3d50a3 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| <?php | |
| class MyMailer { | |
| public function deliver() | |
| { | |
| // This facade doesn't need to be injected into the class. | |
| Mail::send('emails.welcome', [], function($m) | |
| { | |
| $m->to('jeffrey@foo.com') | |
| ->subject('Welcome to the site') | |
| ->setCharset('UTF-8'); | |
| }); | |
| } | |
| } | |
| class ExampleTest extends TestCase { | |
| public function tearDown() | |
| { | |
| Mockery::close(); | |
| } | |
| public function testBasicExample() | |
| { | |
| // mock it | |
| Mail::shouldReceive('send')->once(); | |
| (new MyMailer)->deliver(); | |
| } | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment