Conditions | 1 |
Paths | 1 |
Total Lines | 6 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
18 | public function testSitemapShowsNavigationTitleNotNormalTitle() { |
||
19 | $response = $this->get('sitemap'); |
||
20 | $parser = new CSSContentParser($response->getBody()); |
||
21 | $elements = $parser->getBySelector('.sitemap li.first .sitemap-link'); |
||
22 | $this->assertNotEmpty($elements); |
||
23 | $this->assertEquals('Top page nav 1', (string) $elements[0]); |
||
24 | } |
||
26 |