Test <?xml ?> tags in subtemplate

This commit is contained in:
uwetews
2016-09-28 23:32:01 +02:00
parent 81852c085f
commit e1ad0ece66
2 changed files with 12 additions and 0 deletions

View File

@@ -69,6 +69,17 @@ class XmlTest extends PHPUnit_Smarty
$content = $this->smarty->fetch('xml.tpl');
$this->assertEquals('<?xml version="1.0" encoding="UTF-8"?>', $content);
}
/**
* test subtemplate xml caching
*/
public function testXmlCaching2()
{
$this->smarty->security_policy->php_handling = Smarty::PHP_PASSTHRU;
$this->smarty->caching = true;
$this->smarty->cache_lifetime = 1000;
$content = $this->smarty->fetch('xml_main.tpl');
$this->assertEquals('<?xml version="1.0" encoding="UTF-8"?>', $content);
}
/**
* test xml caching PhpQuote

View File

@@ -0,0 +1 @@
{include 'xml.tpl'}