Exemplo n.º 1
0
 public function testPath()
 {
     $url = new Url('http://www.example.com');
     $this->assertEquals('/', $url->getPath());
     $url = new Url('http://www.example.com/');
     $this->assertEquals('/', $url->getPath());
     $url = new Url('http://www.example.com/foo/bar');
     $this->assertEquals('/foo/bar', $url->getPath());
 }