コード例 #1
0
 public function testGetJsDir()
 {
     $gcc = new GCCompiler($this->app['config']);
     $this->assertEquals('js', $gcc->getJsDir());
     $this->app['config']->set('laravel-gcc::public_path', 'other-dir');
     $this->assertEquals('other-dir', $gcc->getJsDir());
 }