summaryrefslogtreecommitdiff
path: root/_testing/integrationtests/basic/basic.test.php
diff options
context:
space:
mode:
Diffstat (limited to '_testing/integrationtests/basic/basic.test.php')
-rw-r--r--_testing/integrationtests/basic/basic.test.php14
1 files changed, 0 insertions, 14 deletions
diff --git a/_testing/integrationtests/basic/basic.test.php b/_testing/integrationtests/basic/basic.test.php
deleted file mode 100644
index 56cef965f..000000000
--- a/_testing/integrationtests/basic/basic.test.php
+++ /dev/null
@@ -1,14 +0,0 @@
-<?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'
- );
- }
-}