aboutsummaryrefslogtreecommitdiffstats
path: root/tests/bbcode/parser_test.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/bbcode/parser_test.php')
-rw-r--r--tests/bbcode/parser_test.php9
1 files changed, 4 insertions, 5 deletions
diff --git a/tests/bbcode/parser_test.php b/tests/bbcode/parser_test.php
index 7c7aca6230..4a11f47680 100644
--- a/tests/bbcode/parser_test.php
+++ b/tests/bbcode/parser_test.php
@@ -8,16 +8,15 @@
*
*/
-define('IN_PHPBB', true);
-
-require_once 'test_framework/framework.php';
-require_once '../phpBB/includes/bbcode/bbcode_parser_base.php';
-require_once '../phpBB/includes/bbcode/bbcode_parser.php';
+// require_once __DIR__ . '/../../phpBB/includes/bbcode/bbcode_parser_base.php';
+// require_once __DIR__ . '/../../phpBB/includes/bbcode/bbcode_parser.php';
class phpbb_bbcode_parser_test extends PHPUnit_Framework_TestCase
{
public function test_both_passes()
{
+ $this->markTestIncomplete('New bbcode parser has not been backported from feature/ascraeus-experiment yet.');
+
$parser = new phpbb_bbcode_parser();
$result = $parser->first_pass('[i]Italic [u]underlined text[/u][/i]');