xref: /dokuwiki/_test/tests/test/phpquery.test.php (revision df4fc3c00a2bcad6222b4842540545a6e546c4cc)
1<?php
2
3/**
4 * @group integration
5 */
6class InttestsPHPQueryTest extends DokuWikiTest {
7    /**
8     * Execute the simplest possible request and check the
9     * meta generator tag is set to "DokuWiki"
10     */
11    function testSimpleRun() {
12        $request = new TestRequest();
13
14        $response = $request->execute();
15
16        $this->assertEquals('DokuWiki', $response->queryHTML('meta[name="generator"]')->attr('content') );
17    }
18}
19