diff options
Diffstat (limited to '_testing/unittests/inc/common_pagetemplate.test.php')
-rw-r--r-- | _testing/unittests/inc/common_pagetemplate.test.php | 18 |
1 files changed, 0 insertions, 18 deletions
diff --git a/_testing/unittests/inc/common_pagetemplate.test.php b/_testing/unittests/inc/common_pagetemplate.test.php deleted file mode 100644 index c4cc58295..000000000 --- a/_testing/unittests/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 PHPUnit_Framework_TestCase { - - function test_none(){ - global $conf; - $conf['sepchar'] = '-'; - $data = array( - 'id' => 'page-id-long', - 'tpl' => '"@PAGE@" "@!PAGE@" "@!!PAGE@" "@!PAGE!@"', - ); - $this->assertEquals(parsePageTemplate($data), '"page id long" "Page id long" "Page Id Long" "PAGE ID LONG"'); - } -} -//Setup VIM: ex: et ts=4 : |