Conditions | 1 |
Paths | 1 |
Total Lines | 12 |
Code Lines | 6 |
Lines | 0 |
Ratio | 0 % |
Changes | 0 |
1 | <?php |
||
18 | public function testCheckReportsMissingPages() |
||
19 | { |
||
20 | $this->markTestSkipped('ExternalURLCheck seems faulty on some systems'); |
||
21 | |||
22 | $check = new ExternalURLCheck('http://missing-site/'); |
||
23 | |||
24 | $expected = [ |
||
25 | EnvironmentCheck::ERROR, |
||
26 | 'Success retrieving "http://missing-site/" (Code: 404)' |
||
27 | ]; |
||
28 | |||
29 | $this->assertEquals($expected, $check->check()); |
||
30 | } |
||
32 |