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 1e97a2d commit 60cdbecCopy full SHA for 60cdbec
tests/Asserts/EloquentAssertsTest.php
@@ -25,4 +25,16 @@ public function it_has_eloquent_fillable_not_equals_assertion()
25
{
26
$this->assertEloquentFillableNotEquals(Post::class, ['title', 'body']);
27
}
28
+
29
+ /** @test */
30
+ public function it_has_eloquent_touches_equals_assertion()
31
+ {
32
+ $this->assertEloquentTouchesEquals(Post::class, []);
33
+ }
34
35
36
+ public function it_has_eloquent_touches_not_equals_assertion()
37
38
+ $this->assertEloquentTouchesNotEquals(Post::class, ['user']);
39
40
0 commit comments