| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 1 | ||
| Bugs | 0 | Features | 0 |
| 1 | <?php |
||
| 30 | final public function testHeaders(): void |
||
| 31 | { |
||
| 32 | $request = new TestRequest(); |
||
| 33 | $response = $request->get(array('id' => 'wiki:syntax')); |
||
| 34 | |||
| 35 | // check description meta headers |
||
| 36 | $this->assertStringContainsString( |
||
| 37 | 'DokuWiki supports some simple markup language', |
||
| 38 | $response->queryHTML('meta[name="description"]')->attr('content') |
||
| 39 | ); |
||
| 42 |