Total Complexity | 2 |
Total Lines | 16 |
Duplicated Lines | 0 % |
Changes | 0 |
1 | <?php namespace GeneaLabs\LaravelCaffeine\Tests\Unit\Console\Commands; |
||
5 | class PublishTest extends TestCase |
||
6 | { |
||
7 | public function testConfigFileGetsPublished() |
||
8 | { |
||
9 | app('artisan')::getFacadeRoot()->call('caffeine:publish', ['--config' => true]); |
||
10 | |||
11 | $this->assertFileExists(base_path('config/genealabs-laravel-caffeine.php')); |
||
12 | } |
||
13 | |||
14 | public function testConfigFileContainsCorrectSettings() |
||
21 | } |
||
22 | } |
||
23 |