summaryrefslogtreecommitdiff
path: root/_test/tests/test/basic.test.php
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2012-04-20 22:19:44 +0200
committerAndreas Gohr <andi@splitbrain.org>2012-04-20 22:19:44 +0200
commite37739ccaac4a28aa2176487a637cbdf3d1b85a0 (patch)
treec902bf68d4e212aa2bd71f23d95e751060e639ed /_test/tests/test/basic.test.php
parent42dcf8b19dfef94b81a71813ce58e6a0b0026cb1 (diff)
downloadrpg-e37739ccaac4a28aa2176487a637cbdf3d1b85a0.tar.gz
rpg-e37739ccaac4a28aa2176487a637cbdf3d1b85a0.tar.bz2
some cleanup
removed unneeded data files, converted tabs to spaces
Diffstat (limited to '_test/tests/test/basic.test.php')
-rw-r--r--_test/tests/test/basic.test.php26
1 files changed, 13 insertions, 13 deletions
diff --git a/_test/tests/test/basic.test.php b/_test/tests/test/basic.test.php
index ca788a91d..b4926d2ba 100644
--- a/_test/tests/test/basic.test.php
+++ b/_test/tests/test/basic.test.php
@@ -4,19 +4,19 @@
* @group integration
*/
class InttestsBasicTest extends DokuWikiTest {
- /**
- * Execute the simplest possible request and expect
- * a dokuwiki page which obviously has the word "DokuWiki"
- * in it somewhere.
- */
- function testSimpleRun() {
- $request = new TestRequest();
+ /**
+ * Execute the simplest possible request and expect
+ * a dokuwiki page which obviously has the word "DokuWiki"
+ * in it somewhere.
+ */
+ function testSimpleRun() {
+ $request = new TestRequest();
- $response = $request->execute();
+ $response = $request->execute();
- $this->assertTrue(
- strpos($response->getContent(), 'DokuWiki') >= 0,
- 'DokuWiki was not a word in the output'
- );
- }
+ $this->assertTrue(
+ strpos($response->getContent(), 'DokuWiki') >= 0,
+ 'DokuWiki was not a word in the output'
+ );
+ }
}