Skip to content

Commit 3420a13

Browse files
committed
ITT: ArtisanAsserts tests added.
1 parent 5474c55 commit 3420a13

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

tests/Asserts/ArtisanAssertsTest.php

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -33,4 +33,16 @@ public function it_has_see_artisan_table_output_assertion()
3333
['Date' => '2016-12-15 15:15:15', 'System' => 'Gamma', 'Status' => 'Disabled'],
3434
]);
3535
}
36+
37+
/** @test */
38+
public function it_has_dont_see_artisan_table_output_assertion()
39+
{
40+
$this->artisan('table-output');
41+
42+
$this->dontSeeArtisanTableOutput([
43+
['Date' => '2016-12-13 13:13:13', 'System' => 'Alpha', 'Status' => 'Enabled'],
44+
['Date' => '2016-12-14 14:14:14', 'System' => 'Beta', 'Status' => 'Enabled'],
45+
['Date' => '2016-12-15 15:15:15', 'System' => 'Gamma', 'Status' => 'Enabled'],
46+
]);
47+
}
3648
}

0 commit comments

Comments
 (0)