19 lines
		
	
	
		
			283 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			283 B
		
	
	
	
		
			PHP
		
	
	
	
	
	
| <?php
 | |
| 
 | |
| use Mockery as m;
 | |
| 
 | |
| class TestConfig extends TestCase
 | |
| {
 | |
| 
 | |
|     public function tearDown()
 | |
|     {
 | |
|         parent::tearDown();
 | |
|         m::close();
 | |
|     }
 | |
| 
 | |
|     public function testCreatorConfig()
 | |
|     {
 | |
|         $this->assertEquals(Config::get('excel.creator'), 'Maatwebsite');
 | |
|     }
 | |
| 
 | |
| } | 
