mirror of
https://code.mensbeam.com/MensBeam/Arsse.git
synced 2024-12-31 21:12:41 +00:00
Tests for URL::absolute()
This commit is contained in:
parent
64c3ec3571
commit
c3643fba10
1 changed files with 17 additions and 0 deletions
|
@ -91,4 +91,21 @@ class TestURL extends \JKingWeb\Arsse\Test\AbstractTest {
|
||||||
["/#ack", "", "/#ack"],
|
["/#ack", "", "/#ack"],
|
||||||
];
|
];
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/** @dataProvider provideAbsolutes */
|
||||||
|
public function testDetermineAbsoluteness(bool $exp, string $url) {
|
||||||
|
$this->assertSame($exp, URL::absolute($url));
|
||||||
|
}
|
||||||
|
|
||||||
|
public function provideAbsolutes() {
|
||||||
|
return [
|
||||||
|
[true, "http://example.com/"],
|
||||||
|
[true, "HTTP://example.com/"],
|
||||||
|
[false, "//example.com/"],
|
||||||
|
[false, "/example"],
|
||||||
|
[false, "example.com/"],
|
||||||
|
[false, "example.com"],
|
||||||
|
[false, "http:///example"],
|
||||||
|
];
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in a new issue