Conditions | 1 |
Paths | 1 |
Total Lines | 9 |
Code Lines | 5 |
Lines | 0 |
Ratio | 0 % |
Changes | 1 | ||
Bugs | 0 | Features | 0 |
1 | <?php |
||
37 | final public function testHeaderFromSyntax(): void |
||
38 | { |
||
39 | $request = new TestRequest(); |
||
40 | $response = $request->get(array('id' => 'description_syntax')); |
||
41 | |||
42 | // check description meta headers, set from file |
||
43 | $this->assertStringContainsString( |
||
44 | 'Place the page description here', |
||
45 | $response->queryHTML('meta[name="description"]')->attr('content') |
||
46 | ); |
||
49 |