summaryrefslogtreecommitdiff
path: root/_test
diff options
context:
space:
mode:
authorAndreas Gohr <andi@splitbrain.org>2008-02-23 11:14:26 +0100
committerAndreas Gohr <andi@splitbrain.org>2008-02-23 11:14:26 +0100
commit8acb31082c9a565d775be0739e6deaf1773f9751 (patch)
treeb251a6d80715126651aa995d50a21185ca9c5042 /_test
parentb739ff0f3e184faec86f6b027960b65d33d110e9 (diff)
downloadrpg-8acb31082c9a565d775be0739e6deaf1773f9751.tar.gz
rpg-8acb31082c9a565d775be0739e6deaf1773f9751.tar.bz2
renamed justlink option to linkonly
darcs-hash:20080223101426-7ad00-ceacdc83e829f1da7aa272eb597277a8c78113be.gz
Diffstat (limited to '_test')
-rw-r--r--_test/cases/inc/parser/parser_links.test.php6
1 files changed, 3 insertions, 3 deletions
diff --git a/_test/cases/inc/parser/parser_links.test.php b/_test/cases/inc/parser/parser_links.test.php
index 86597ba9e..d255437f8 100644
--- a/_test/cases/inc/parser/parser_links.test.php
+++ b/_test/cases/inc/parser/parser_links.test.php
@@ -322,14 +322,14 @@ class TestOfDoku_Parser_Links extends TestOfDoku_Parser {
$this->assertEqual(array_map('stripByteIndex',$this->H->calls),$calls);
}
- function testMediaInternalJustlink() {
+ function testMediaInternalLinkOnly() {
$this->P->addMode('media',new Doku_Parser_Mode_Media());
- $this->P->parse('Foo {{img.gif?justlink}} Bar');
+ $this->P->parse('Foo {{img.gif?linkonly}} Bar');
$calls = array (
array('document_start',array()),
array('p_open',array()),
array('cdata',array("\n".'Foo ')),
- array('internalmedia',array('img.gif',NULL,NULL,NULL,NULL,'cache','justlink')),
+ array('internalmedia',array('img.gif',NULL,NULL,NULL,NULL,'cache','linkonly')),
array('cdata',array(' Bar'."\n")),
array('p_close',array()),
array('document_end',array()),