summaryrefslogtreecommitdiff
path: root/_testing/integrationtests/basic/basic.test.php
blob: 56cef965f852f88ba0c50490aac421bf93e19f88 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<?php

class BasicTest extends PHPUnit_Framework_TestCase {
	function testSimpleRun() {
		$request = new TestRequest();

		$response = $request->execute();

		$this->assertTrue(
			strpos($response->getContent(), 'DokuWiki') >= 0,
			'DokuWiki was not a word in the output'
		);
	}
}