MIF_E31210385/vendor/maatwebsite/excel/tests/TestConfig.php

19 lines
284 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');
}
}