We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f65bae0 commit 41cf9c8Copy full SHA for 41cf9c8
tests/Asserts/ArtisanAssertsTest.php
@@ -2,6 +2,24 @@
2
3
class ArtisanAssertsTest extends TestCase
4
{
5
+ /** @test */
6
+ public function it_has_will_see_confirmation_assertion()
7
+ {
8
+ $this->willSeeConfirmation('Are you sure?', ConfirmationCommand::class);
9
+ }
10
+
11
12
+ public function which_also_works_with_confirmable_trait()
13
14
+ $this->willSeeConfirmation('Do you really wish to run this command?', ConfirmableTraitCommand::class);
15
16
17
18
+ public function it_has_will_not_see_confirmation_assertion()
19
20
+ $this->willNotSeeConfirmation('Are you sure?', GenericCommand::class);
21
22
23
/** @test */
24
public function it_has_see_artisan_output_assertion()
25
0 commit comments