diff options
author | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-11 15:22:05 -0500 |
---|---|---|
committer | Nathaniel Guse <nathaniel.guse@gmail.com> | 2013-07-11 15:31:55 -0500 |
commit | 159f018056659fa3eccae744ec513efbd2221f77 (patch) | |
tree | cbc5b6495c6c34e7c74660b05fe6fae8eb80a68a /tests/template | |
parent | 59f34bef087259722e1f7eaa95b96460e007cb30 (diff) | |
download | forums-159f018056659fa3eccae744ec513efbd2221f77.tar forums-159f018056659fa3eccae744ec513efbd2221f77.tar.gz forums-159f018056659fa3eccae744ec513efbd2221f77.tar.bz2 forums-159f018056659fa3eccae744ec513efbd2221f77.tar.xz forums-159f018056659fa3eccae744ec513efbd2221f77.zip |
[ticket/11388] INCLUDECSS
PHPBB3-11388
Diffstat (limited to 'tests/template')
-rw-r--r-- | tests/template/parent_templates/parent_only.css | 0 | ||||
-rw-r--r-- | tests/template/template_includecss_test.php | 28 | ||||
-rw-r--r-- | tests/template/templates/child_only.css | 0 | ||||
-rw-r--r-- | tests/template/templates/includecss.html | 3 |
4 files changed, 31 insertions, 0 deletions
diff --git a/tests/template/parent_templates/parent_only.css b/tests/template/parent_templates/parent_only.css new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/template/parent_templates/parent_only.css diff --git a/tests/template/template_includecss_test.php b/tests/template/template_includecss_test.php new file mode 100644 index 0000000000..f8999ad1a9 --- /dev/null +++ b/tests/template/template_includecss_test.php @@ -0,0 +1,28 @@ +<?php +/** +* +* @package testing +* @copyright (c) 2013 phpBB Group +* @license http://opensource.org/licenses/gpl-2.0.php GNU General Public License v2 +* +*/ + +require_once dirname(__FILE__) . '/template_test_case_with_tree.php'; + +class phpbb_template_template_includecss_test extends phpbb_template_template_test_case_with_tree +{ + public function test_includecss_compilation() + { + // Reset the engine state + $this->setup_engine(array('assets_version' => 1)); + + // Prepare correct result + $scripts = array( + '<link href="' . $this->test_path . '/templates/child_only.css?assets_version=1" rel="stylesheet" type="text/css" media="screen, projection" />', + '<link href="' . $this->test_path . '/parent_templates/parent_only.css?assets_version=1" rel="stylesheet" type="text/css" media="screen, projection" />', + ); + + // Run test + $this->run_template('includecss.html', array(), array(), array(), implode('', $scripts)); + } +} diff --git a/tests/template/templates/child_only.css b/tests/template/templates/child_only.css new file mode 100644 index 0000000000..e69de29bb2 --- /dev/null +++ b/tests/template/templates/child_only.css diff --git a/tests/template/templates/includecss.html b/tests/template/templates/includecss.html new file mode 100644 index 0000000000..39de61dfca --- /dev/null +++ b/tests/template/templates/includecss.html @@ -0,0 +1,3 @@ +<!-- INCLUDECSS child_only.css --> +<!-- INCLUDECSS parent_only.css --> +{$STYLESHEETS}
\ No newline at end of file |