From 49cb7482b57046d69c15eea7737716229ba08ef8 Mon Sep 17 00:00:00 2001
From: Christian Schneider
Date: Thu, 3 May 2018 17:48:27 +0200
Subject: Generate it::error when trying to redefine function for a tag
---
tests/it_html.t | 10 +++++-----
1 file changed, 5 insertions(+), 5 deletions(-)
(limited to 'tests')
diff --git a/tests/it_html.t b/tests/it_html.t
index 6d55319..d18afdc 100755
--- a/tests/it_html.t
+++ b/tests/it_html.t
@@ -7,7 +7,7 @@ it::getopt(""); #handle possible --debug parameter
# Traditional html5 generation
ini_set('default_charset', "utf-8");
-new it_html(array('htmltype' => "html5", 'prettyprint' => false));
+new it_html(array('htmltype' => "html5", 'prettyprint' => false, 'error_on_redefine' => false));
is(
a(array('href' => "&foo", 'true' => true, 'false' => false, 'null' => null, 'empty' => ""), "bar"),
@@ -110,13 +110,13 @@ is(
foreach (array('html5' => "
", 'html' => "
", 'xhtml' => "
", 'xhtml-mobile' => "
") as $type => $value)
{
unset($GLOBALS['it_html']);
- new it_html(array('htmltype' => $type));
+ new it_html(array('htmltype' => $type, 'error_on_redefine' => false));
is (trim(br(array('flag' => true))), $value, "Check empty tag and attribute for $type");
}
# XHTML generation
unset($GLOBALS['it_html']);
-new it_html(array('htmltype' => "xhtml", 'tags' => "script"));
+new it_html(array('htmltype' => "xhtml", 'tags' => "script", 'error_on_redefine' => false));
is(
script(),
@@ -139,7 +139,7 @@ is(
# XML generation
unset($GLOBALS['it_html']);
-new it_html(array('htmltype' => "xml", 'name' => 'it_html', 'tags' => "xmltest"));
+new it_html(array('htmltype' => "xml", 'name' => 'it_html', 'tags' => "xmltest", 'error_on_redefine' => false));
is(
xmltest(),
@@ -194,7 +194,7 @@ function overriddentag($args)
}
unset($GLOBALS['it_html']);
-new myhtml(array('htmltype' => "html"));
+new myhtml(array('htmltype' => "html", 'error_on_redefine' => false));
is(
myimg(['src' => "foo.gif", 'alt' => "foo"]),
--
cgit v1.2.3