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 7ecd25d commit 4ba8238Copy full SHA for 4ba8238
README.md
@@ -335,6 +335,24 @@ $this->dontSeeInDatabaseMany('posts', [
335
]);
336
```
337
338
+### EloquentAsserts
339
+
340
+#### `assertEloquentTableEquals()`
341
342
+Checks if Eloquent model table equals to specified value:
343
344
+```php
345
+$this->assertEloquentTableEquals(User::class, 'users');
346
+```
347
348
+#### `assertEloquentTableNotEquals()`
349
350
+Checks if Eloquent model table not equals to specified value:
351
352
353
+$this->assertEloquentTableNotEquals(User::class, 'posts');
354
355
356
### ExceptionAsserts
357
358
#### `willSeeException()`
0 commit comments