File tree Expand file tree Collapse file tree 2 files changed +18
-1
lines changed
tests/TestingTools/Asserts Expand file tree Collapse file tree 2 files changed +18
-1
lines changed Original file line number Diff line number Diff line change @@ -92,13 +92,29 @@ public function it_has_see_in_artisan_output_assertion()
9292 }
9393
9494 /** @test */
95- public function which_also_accepts_file_path_instead_of_string_needle ()
95+ public function which_accepts_file_path_instead_of_string_needle ()
9696 {
9797 $ this ->artisan ('table-output ' );
9898
9999 $ this ->seeInArtisanOutput (__DIR__ . '/ArtisanAssertsTest/table.needle.output.txt ' );
100100 }
101101
102+ /** @test */
103+ public function it_has_dont_see_in_artisan_output_assertion ()
104+ {
105+ $ this ->artisan ('table-output ' );
106+
107+ $ this ->dontSeeInArtisanOutput ('Hello ' );
108+ }
109+
110+ /** @test */
111+ public function which_also_accepts_file_path_instead_of_string_needle ()
112+ {
113+ $ this ->artisan ('table-output ' );
114+
115+ $ this ->dontSeeInArtisanOutput (__DIR__ . '/ArtisanAssertsTest/table.fake-needle.output.txt ' );
116+ }
117+
102118 /** @test */
103119 public function it_has_see_artisan_table_output_assertion ()
104120 {
Original file line number Diff line number Diff line change 1+ Hello
You can’t perform that action at this time.
0 commit comments