mirror of
https://github.com/crater-invoice/crater.git
synced 2025-10-27 11:41:09 -04:00
22 lines
610 B
PHP
22 lines
610 B
PHP
<?php
|
|
|
|
use Crater\Models\User;
|
|
use Illuminate\Support\Facades\Artisan;
|
|
|
|
beforeEach(function () {
|
|
Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
|
|
Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
|
|
});
|
|
|
|
test('user belongs to currency', function () {
|
|
$user = User::factory()->create();
|
|
|
|
$this->assertTrue($user->currency()->exists());
|
|
});
|
|
|
|
test('user belongs to many companies', function () {
|
|
$user = User::factory()->hasCompanies(5)->create();
|
|
|
|
$this->assertInstanceOf('Illuminate\Database\Eloquent\Collection', $user->companies);
|
|
});
|