diff options
Diffstat (limited to '_test/cases/inc/common_pagetemplate.test.php')
-rw-r--r-- | _test/cases/inc/common_pagetemplate.test.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/_test/cases/inc/common_pagetemplate.test.php b/_test/cases/inc/common_pagetemplate.test.php deleted file mode 100644 index cc89f6906..000000000 --- a/_test/cases/inc/common_pagetemplate.test.php +++ /dev/null @@ -1,18 +0,0 @@ -<?php - -require_once DOKU_INC.'inc/init.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!@"', - ); - $this->assertEqual(parsePageTemplate($data), '"page id long" "Page id long" "Page Id Long" "PAGE ID LONG"'); - } -} -//Setup VIM: ex: et ts=4 : |