TestConfig.php 283 B

12345678910111213141516171819
  1. <?php
  2. use Mockery as m;
  3. class TestConfig extends TestCase
  4. {
  5. public function tearDown()
  6. {
  7. parent::tearDown();
  8. m::close();
  9. }
  10. public function testCreatorConfig()
  11. {
  12. $this->assertEquals(Config::get('excel.creator'), 'Maatwebsite');
  13. }
  14. }