47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			47 lines
		
	
	
		
			1.1 KiB
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| namespace Tests\Feature\Common;
 | |
| 
 | |
| use App\Jobs\Setting\CreateCategory;
 | |
| use Tests\Feature\FeatureTestCase;
 | |
| 
 | |
| class SourcesTest extends FeatureTestCase
 | |
| {
 | |
|     public function testItShouldHaveAutoSource()
 | |
|     {
 | |
|         $request = $this->getRequest();
 | |
| 
 | |
|         $category = $this->dispatch(new CreateCategory($request));
 | |
| 
 | |
|         $this->assertDatabaseHas('categories', [
 | |
|             'id' => $category->id,
 | |
|             'created_from' => 'core::console',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function testItShouldHaveManualSource()
 | |
|     {
 | |
|         $request = $this->getRequest();
 | |
| 
 | |
|         $request['created_from'] = 'manual';
 | |
| 
 | |
|         $category = $this->dispatch(new CreateCategory($request));
 | |
| 
 | |
|         $this->assertDatabaseHas('categories', [
 | |
|             'id' => $category->id,
 | |
|             'created_from' => 'manual',
 | |
|         ]);
 | |
|     }
 | |
| 
 | |
|     public function getRequest()
 | |
|     {
 | |
|         return [
 | |
|             'company_id' => $this->company->id,
 | |
|             'name' => $this->faker->text(15),
 | |
|             'type' => 'income',
 | |
|             'color' => $this->faker->hexColor,
 | |
|             'enabled' => $this->faker->boolean ? 1 : 0,
 | |
|         ];
 | |
|     }
 | |
| }
 |