/**
  * @param $path
  * @return bool
  */
 protected function isJsPath($path)
 {
     return Path::ext($path) == 'js';
 }
Example #2
0
 /** @test */
 public function itMakesPathFromSomeArrayArgsVar4()
 {
     $res = Path::make('some', 'dir', 'file.xml');
     $this->assertEquals('some/dir/file.xml', $res);
 }