1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-08-09 10:16:36 +02:00

Merge branch '3.3.x'

This commit is contained in:
Marc Alexander
2021-10-17 19:51:34 +02:00
4 changed files with 74 additions and 0 deletions

View File

@@ -123,4 +123,18 @@ class phpbb_template_template_includecss_test extends phpbb_template_template_te
// Run test
$this->run_template('includecss.html', array(), array(), array(), $expected);
}
/**
* @dataProvider template_data
*/
public function test_include_css_compilation($vars, $expected)
{
// Reset the engine state
$this->setup_engine(array('assets_version' => 1));
$this->template->assign_vars($vars);
// Run test
$this->run_template('includecss_twig.html', array(), array(), array(), $expected);
}
}