mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-31 05:31:10 -04:00 
			
		
		
		
	build version 400
This commit is contained in:
		
							
								
								
									
										35
									
								
								tests/Unit/UnitTest.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										35
									
								
								tests/Unit/UnitTest.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,35 @@ | ||||
| <?php | ||||
|  | ||||
| use Crater\Models\User; | ||||
| use Crater\Models\Unit; | ||||
| use Illuminate\Support\Facades\Artisan; | ||||
| use Laravel\Sanctum\Sanctum; | ||||
|  | ||||
| beforeEach(function () { | ||||
|     Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]); | ||||
|     Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]); | ||||
|     Artisan::call('db:seed', ['--class' => 'UnitSeeder', '--force' => true]); | ||||
|  | ||||
|     $user = User::where('role', 'super admin')->first(); | ||||
|     $this->withHeaders([ | ||||
|         'company' => $user->company_id, | ||||
|     ]); | ||||
|     Sanctum::actingAs( | ||||
|         $user, | ||||
|         ['*'] | ||||
|     ); | ||||
| }); | ||||
|  | ||||
| test('unit has many items', function () { | ||||
|  | ||||
|     $unit = Unit::factory()->hasItems(5)->create(); | ||||
|  | ||||
|     $this->assertCount(5, $unit->items); | ||||
|     $this->assertTrue($unit->items()->exists()); | ||||
| }); | ||||
|  | ||||
| test('unit belongs to company', function () { | ||||
|     $unit = Unit::factory()->create(); | ||||
|  | ||||
|     $this->assertTrue($unit->company()->exists()); | ||||
| }); | ||||
		Reference in New Issue
	
	Block a user