mirror of
				https://github.com/crater-invoice/crater.git
				synced 2025-10-30 21:21:09 -04:00 
			
		
		
		
	Fix master issues
This commit is contained in:
		
				
					committed by
					
						 Mohit Panjwani
						Mohit Panjwani
					
				
			
			
				
	
			
			
			
						parent
						
							2383e89daa
						
					
				
				
					commit
					ab153963e4
				
			
							
								
								
									
										16
									
								
								tests/Unit/ExpenseCategoryTest.php
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										16
									
								
								tests/Unit/ExpenseCategoryTest.php
									
									
									
									
									
										Normal file
									
								
							| @ -0,0 +1,16 @@ | ||||
| <?php | ||||
|  | ||||
| use Crater\Models\ExpenseCategory; | ||||
| use Illuminate\Support\Facades\Artisan; | ||||
|  | ||||
| beforeEach(function () { | ||||
|     Artisan::call('db:seed', ['--class' => 'DatabaseSeeder', '--force' => true]); | ||||
|     Artisan::call('db:seed', ['--class' => 'DemoSeeder', '--force' => true]); | ||||
| }); | ||||
|  | ||||
| test('expense category has many expenses', function () { | ||||
|     $category = ExpenseCategory::factory()->hasExpenses(5)->create(); | ||||
|  | ||||
|     $this->assertCount(5, $category->expenses); | ||||
|     $this->assertTrue($category->expenses()->exists()); | ||||
| }); | ||||
		Reference in New Issue
	
	Block a user