Skip to content

Commit

Permalink
wip
Browse files Browse the repository at this point in the history
Signed-off-by: Mior Muhammad Zaki <[email protected]>
  • Loading branch information
crynobone committed Aug 6, 2024
1 parent c50dcb0 commit c49867f
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions workbench/tests/MailMakeCommandTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,10 @@
class MailMakeCommandTest extends TestCase
{
protected $files = [
'app/Mail/FooMail.php',
'app/Mail/*.php',
'resources/views/foo-mail.blade.php',
'resources/views/mail/foo-mail.blade.php',
'tests/Feature/Mail/FooMailTest.php',
'resources/views/mail/*.blade.php',
'tests/Feature/Mail/*.php',
];

public function testItCanGenerateMailFile()
Expand Down Expand Up @@ -102,7 +102,7 @@ public function testItCanGenerateMailWithMarkdownViewWithNoInitialInput()
->expectsQuestion('Would you like to create a view?', 'markdown')
->assertExitCode(0);

$this->assertFilenameExists('app/Mail/MyFooMail.php');
$this->assertFilenameExists('resources/views/mail/my-foo-mail.blade.php');
$this->assertFilenameExists('app/Mail/FooMail.php');
$this->assertFilenameExists('resources/views/mail/foo-mail.blade.php');
}
}

0 comments on commit c49867f

Please sign in to comment.