mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-28 12:11:08 -04:00 
			
		
		
		
	
		
			
				
	
	
		
			21 lines
		
	
	
		
			534 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			21 lines
		
	
	
		
			534 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Crater\Models\Address;
 | |
| use Crater\Models\Country;
 | |
| use Illuminate\Support\Facades\Artisan;
 | |
| 
 | |
| beforeEach(function () {
 | |
|     Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]);
 | |
|     Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]);
 | |
| });
 | |
| 
 | |
| test('country has many addresses', function () {
 | |
|     $country = Country::find(1);
 | |
| 
 | |
|     $address = Address::factory()->count(5)->create([
 | |
|         'country_id' => $country->id,
 | |
|     ]);
 | |
| 
 | |
|     $this->assertTrue($country->address()->exists());
 | |
| });
 |