diff options
Diffstat (limited to '_test/cases/inc/common_pagetemplate.test.php')
-rw-r--r-- | _test/cases/inc/common_pagetemplate.test.php | 19 |
1 files changed, 0 insertions, 19 deletions
diff --git a/_test/cases/inc/common_pagetemplate.test.php b/_test/cases/inc/common_pagetemplate.test.php deleted file mode 100644 index 2db8b64ae..000000000 --- a/_test/cases/inc/common_pagetemplate.test.php +++ /dev/null @@ -1,19 +0,0 @@ -<?php - -require_once DOKU_INC.'inc/common.php'; - -class common_pagetemplate_test extends UnitTestCase { - - function test_none(){ - global $conf; - $conf['sepchar'] = '-'; - $data = array( - 'id' => 'page-id-long', - 'tpl' => '"@PAGE@" "@!PAGE@" "@!!PAGE@" "@!PAGE!@"', - ); - $old = error_reporting(E_ALL & ~E_NOTICE); - $this->assertEqual(parsePageTemplate($data), '"page id long" "Page id long" "Page Id Long" "PAGE ID LONG"'); - error_reporting($old); - } -} -//Setup VIM: ex: et ts=4 : |