aboutsummaryrefslogtreecommitdiffstats
path: root/tests/text_reparser/plugins/forum_rules_test.php
diff options
context:
space:
mode:
authorJoshyPHP <s9e.dev@gmail.com>2015-05-29 17:36:06 +0200
committerJoshyPHP <s9e.dev@gmail.com>2015-05-30 17:26:13 +0200
commit132282634ff746c6c4627b87e307df3748f7bbd9 (patch)
tree04ad4777b3a1b8be72afa2a18b35fdb0e770bba5 /tests/text_reparser/plugins/forum_rules_test.php
parentc8052ea8230cf7bb70c979dfc87b04527635f4b0 (diff)
downloadforums-132282634ff746c6c4627b87e307df3748f7bbd9.tar
forums-132282634ff746c6c4627b87e307df3748f7bbd9.tar.gz
forums-132282634ff746c6c4627b87e307df3748f7bbd9.tar.bz2
forums-132282634ff746c6c4627b87e307df3748f7bbd9.tar.xz
forums-132282634ff746c6c4627b87e307df3748f7bbd9.zip
[ticket/13803] Moved tests to a subdir
PHPBB3-13803
Diffstat (limited to 'tests/text_reparser/plugins/forum_rules_test.php')
-rw-r--r--tests/text_reparser/plugins/forum_rules_test.php26
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/text_reparser/plugins/forum_rules_test.php b/tests/text_reparser/plugins/forum_rules_test.php
new file mode 100644
index 0000000000..4c267c9014
--- /dev/null
+++ b/tests/text_reparser/plugins/forum_rules_test.php
@@ -0,0 +1,26 @@
+<?php
+/**
+*
+* This file is part of the phpBB Forum Software package.
+*
+* @copyright (c) phpBB Limited <https://www.phpbb.com>
+* @license GNU General Public License, version 2 (GPL-2.0)
+*
+* For full copyright and license information, please see
+* the docs/CREDITS.txt file.
+*
+*/
+include_once __DIR__ . '/test_row_based_plugin.php';
+
+class phpbb_textreparser_forum_rules_test extends phpbb_textreparser_test_row_based_plugin
+{
+ public function getDataSet()
+ {
+ return $this->createXMLDataSet(__DIR__ . '/fixtures/forums.xml');
+ }
+
+ protected function get_reparser()
+ {
+ return new \phpbb\textreparser\plugins\forum_rules($this->db);
+ }
+}