We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 27000f2 commit 6b4f6e7Copy full SHA for 6b4f6e7
1 file changed
tests/UriTest.php
@@ -178,4 +178,12 @@ public function testSplitURI_07() {
178
$this->assertEquals('/{some-var}/{x}/{some-var}',$uriObj->getPath());
179
$this->assertEquals(2,count($uriObj->getUriVars()));
180
}
181
+ /**
182
+ * @test
183
+ */
184
+ public function testSplitURI_08() {
185
+ $uri = 'https://programmingacademia.com/Hello World';
186
+ $uriObj = new Uri($uri, '');
187
+ $this->assertEquals('/Hello World',$uriObj->getPath());
188
+ }
189
0 commit comments