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 f3f0375 commit b745bccCopy full SHA for b745bcc
tests/Asserts/DatabaseAssertsTest.php
@@ -37,6 +37,18 @@ private function seedDatabase()
37
factory(Post::class)->create(['title' => 'Third Post']);
38
}
39
40
+ /** @test */
41
+ public function it_has_see_database_table_assertion()
42
+ {
43
+ $this->seeDatabaseTable('posts');
44
+ }
45
+
46
47
+ public function it_has_dont_see_database_table_assertion()
48
49
+ $this->dontSeeDatabaseTable('unicorns');
50
51
52
/** @test */
53
public function it_has_see_in_database_many_assertion()
54
{
0 commit comments