Example #1
0
 public function testCombinePaths()
 {
     $this->assertEquals('', Paths::combinePaths('', ''));
     $this->assertEquals('', Paths::combinePaths('', '/'));
     $this->assertEquals('/', Paths::combinePaths('/', ''));
     $this->assertEquals('foo/bar', Paths::combinePaths('foo', 'bar'));
 }