Esempio n. 1
0
 /**
  * @test
  */
 public function shouldMakeFilePathFromTokens()
 {
     $expected = '/some/awesome/and/incredible/nice.file';
     $filePath = $this->utils->makePath('/some', 'awesome/', 'and/incredible', 'nice.file');
     $this->assertSame($expected, $filePath);
 }