Skip to content

Commit 696a1ba

Browse files
authored
Merge pull request #52 from nbayramberdiyev/add-skip-check
Allow marking `testPathWithMultipleSlashes` skipped
2 parents d368c62 + 69528ec commit 696a1ba

File tree

1 file changed

+4
-0
lines changed

1 file changed

+4
-0
lines changed

src/UriIntegrationTest.php

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -229,6 +229,10 @@ public function testUriModification2()
229229

230230
public function testPathWithMultipleSlashes()
231231
{
232+
if (isset($this->skippedTests[__FUNCTION__])) {
233+
$this->markTestSkipped($this->skippedTests[__FUNCTION__]);
234+
}
235+
232236
$expected = 'http://example.org//valid///path';
233237
$uri = $this->createUri($expected);
234238

0 commit comments

Comments
 (0)