@@ -30,8 +30,8 @@ public function testItCanGenerateViewFileWithTest()
30
30
public function testItCanGenerateMailWithNoInitialInput ()
31
31
{
32
32
$ this ->artisan ('make:mail ' )
33
- ->expectsQuestion ('What should the mailable be named? ' ,'FooMail ' )
34
- ->expectsQuestion ('Would you like to create a view? ' ,'none ' )
33
+ ->expectsQuestion ('What should the mailable be named? ' , 'FooMail ' )
34
+ ->expectsQuestion ('Would you like to create a view? ' , 'none ' )
35
35
->assertExitCode (0 );
36
36
37
37
$ this ->assertFilenameExists ('app/Mail/FooMail.php ' );
@@ -41,8 +41,8 @@ public function testItCanGenerateMailWithNoInitialInput()
41
41
public function testItCanGenerateMailWithViewWithNoInitialInput ()
42
42
{
43
43
$ this ->artisan ('make:mail ' )
44
- ->expectsQuestion ('What should the mailable be named? ' ,'MyFooMail ' )
45
- ->expectsQuestion ('Would you like to create a view? ' ,'view ' )
44
+ ->expectsQuestion ('What should the mailable be named? ' , 'MyFooMail ' )
45
+ ->expectsQuestion ('Would you like to create a view? ' , 'view ' )
46
46
->assertExitCode (0 );
47
47
48
48
$ this ->assertFilenameExists ('app/Mail/MyFooMail.php ' );
@@ -53,8 +53,8 @@ public function testItCanGenerateMailWithMarkdownViewWithNoInitialInput()
53
53
{
54
54
$ this ->artisan ('make:mail ' )
55
55
56
- ->expectsQuestion ('What should the mailable be named? ' ,'FooMail ' )
57
- ->expectsQuestion ('Would you like to create a view? ' ,'markdown ' )
56
+ ->expectsQuestion ('What should the mailable be named? ' , 'FooMail ' )
57
+ ->expectsQuestion ('Would you like to create a view? ' , 'markdown ' )
58
58
->assertExitCode (0 );
59
59
60
60
$ this ->assertFilenameExists ('app/Mail/MyFooMail.php ' );
0 commit comments