GuzzleHttp\Tests\Psr7\UriNormalizerTest::testRemoveDotSegmentsOfRelativePathReference PHP Method

testRemoveDotSegmentsOfRelativePathReference() public method

    public function testRemoveDotSegmentsOfRelativePathReference()
    {
        $uri = new Uri('../c/./d.html');
        $normalizedUri = UriNormalizer::normalize($uri, UriNormalizer::REMOVE_DOT_SEGMENTS);
        $this->assertInstanceOf('Psr\\Http\\Message\\UriInterface', $normalizedUri);
        $this->assertSame('../c/./d.html', (string) $normalizedUri);
    }