aboutsummaryrefslogtreecommitdiffstats
path: root/tests/template
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-09-02 22:12:11 +0200
committerTristan Darricau <github@nicofuma.fr>2014-09-02 22:12:11 +0200
commit55a3c96fb008a96e43572329ed5127ce7d6f5f6f (patch)
treefeb2ae08fbe3c7af34f54b14fe91e0b2ca605a24 /tests/template
parentcf5ae5abbcacbcbfc920f75ad4f95c8277ec0b01 (diff)
downloadforums-55a3c96fb008a96e43572329ed5127ce7d6f5f6f.tar
forums-55a3c96fb008a96e43572329ed5127ce7d6f5f6f.tar.gz
forums-55a3c96fb008a96e43572329ed5127ce7d6f5f6f.tar.bz2
forums-55a3c96fb008a96e43572329ed5127ce7d6f5f6f.tar.xz
forums-55a3c96fb008a96e43572329ed5127ce7d6f5f6f.zip
[ticket/12661] Fix unit tests
PHPBB3-12661
Diffstat (limited to 'tests/template')
-rw-r--r--tests/template/template_allfolder_test.php22
1 files changed, 21 insertions, 1 deletions
diff --git a/tests/template/template_allfolder_test.php b/tests/template/template_allfolder_test.php
index b4ad84e9c3..e87688a57c 100644
--- a/tests/template/template_allfolder_test.php
+++ b/tests/template/template_allfolder_test.php
@@ -51,9 +51,29 @@ class phpbb_template_allfolder_test extends phpbb_template_template_test_case
)
);
+ $container = new phpbb_mock_container_builder();
+ $cache_path = $phpbb_root_path . 'cache/twig';
+ $context = new \phpbb\template\context();
+ $loader = new \phpbb\template\twig\loader('');
+ $twig = new \phpbb\template\twig\environment(
+ $config,
+ $path_helper,
+ $container,
+ $cache_path,
+ $this->extension_manager,
+ $loader,
+ array(
+ 'cache' => false,
+ 'debug' => false,
+ 'auto_reload' => true,
+ 'autoescape' => false,
+ )
+ );
+ $this->template = new \phpbb\template\twig\twig($path_helper, $config, $this->user, $context, $twig, $cache_path, array(new \phpbb\template\twig\extension($context, $this->user)), $this->extension_manager);
+ $container->set('template.twig.lexer', new \phpbb\template\twig\lexer($twig));
+
$this->template_path = $this->test_path . '/templates';
$this->ext_template_path = 'tests/extension/ext/vendor4/bar/styles/all/template';
- $this->template = new \phpbb\template\twig\twig($path_helper, $config, $this->user, new \phpbb\template\context(), $this->extension_manager);
$this->template->set_custom_style('all', array($this->template_path, $this->ext_template_path));
}
}