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 3024150 commit cc9d11aCopy full SHA for cc9d11a
tests/Asserts/EloquentAssertsTest.php
@@ -13,4 +13,16 @@ public function it_has_eloquent_table_not_equals_assertion()
13
{
14
$this->assertEloquentTableNotEquals(Post::class, 'users');
15
}
16
+
17
+ /** @test */
18
+ public function it_has_eloquent_fillable_equals_assertion()
19
+ {
20
+ $this->assertEloquentFillableEquals(Post::class, ['title']);
21
+ }
22
23
24
+ public function it_has_eloquent_fillable_not_equals_assertion()
25
26
+ $this->assertEloquentFillableNotEquals(Post::class, ['title', 'body']);
27
28
0 commit comments