| Conditions | 1 |
| Paths | 1 |
| Total Lines | 9 |
| Code Lines | 5 |
| Lines | 0 |
| Ratio | 0 % |
| Changes | 0 | ||
| 1 | <?php |
||
| 37 | final public function testActionHeader(): void |
||
| 38 | { |
||
| 39 | $request = new TestRequest(); |
||
| 40 | $response = $request->get(array('id' => 'wiki:syntax')); |
||
| 41 | |||
| 42 | // check description meta headers |
||
| 43 | $this->assertStringContainsString( |
||
| 44 | 'DokuWiki supports some simple markup language', |
||
| 45 | $response->queryHTML('meta[name="description"]')->attr('content') |
||
| 46 | ); |
||
| 49 |