예제 #1
0
파일: PathsTest.php 프로젝트: jivoo/core
 public function testCombinePaths()
 {
     $this->assertEquals('', Paths::combinePaths('', ''));
     $this->assertEquals('', Paths::combinePaths('', '/'));
     $this->assertEquals('/', Paths::combinePaths('/', ''));
     $this->assertEquals('foo/bar', Paths::combinePaths('foo', 'bar'));
 }