aboutsummaryrefslogtreecommitdiffstats
path: root/tests/controller
diff options
context:
space:
mode:
authorTristan Darricau <github@nicofuma.fr>2014-08-02 19:09:42 +0200
committerTristan Darricau <github@nicofuma.fr>2014-08-09 16:13:22 +0200
commit192b8e2568f499aa2ead98a24d8dd5541b1f315a (patch)
tree0371c204bba34dd9eb480292de6144dbc021fa50 /tests/controller
parent56ca276dcf080972ad2c5ae411b37c392ffed24d (diff)
downloadforums-192b8e2568f499aa2ead98a24d8dd5541b1f315a.tar
forums-192b8e2568f499aa2ead98a24d8dd5541b1f315a.tar.gz
forums-192b8e2568f499aa2ead98a24d8dd5541b1f315a.tar.bz2
forums-192b8e2568f499aa2ead98a24d8dd5541b1f315a.tar.xz
forums-192b8e2568f499aa2ead98a24d8dd5541b1f315a.zip
[ticket/11649] Expose Twig through the container
PHPBB3-11649
Diffstat (limited to 'tests/controller')
-rw-r--r--tests/controller/helper_route_test.php23
1 files changed, 22 insertions, 1 deletions
diff --git a/tests/controller/helper_route_test.php b/tests/controller/helper_route_test.php
index 206c3a4f0b..8113bd0018 100644
--- a/tests/controller/helper_route_test.php
+++ b/tests/controller/helper_route_test.php
@@ -31,7 +31,28 @@ class phpbb_controller_helper_route_test extends phpbb_test_case
$phpEx
);
$this->config = new \phpbb\config\config(array('enable_mod_rewrite' => '0'));
- $this->template = new phpbb\template\twig\twig($phpbb_path_helper, $this->config, $this->user, new \phpbb\template\context());
+
+ $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(
+ $this->config,
+ $phpbb_path_helper,
+ $container,
+ $cache_path,
+ null,
+ $loader,
+ array(
+ 'cache' => false,
+ 'debug' => false,
+ 'auto_reload' => true,
+ 'autoescape' => false,
+ )
+ );
+ $this->template = new phpbb\template\twig\twig($phpbb_path_helper, $this->config, $this->user, $context, $twig, $cache_path, array(new \phpbb\template\twig\extension($context, $this->user)));
+ $container->set('template.twig.lexer', new \phpbb\template\twig\lexer($twig));
+
$this->extension_manager = new phpbb_mock_extension_manager(
dirname(__FILE__) . '/',
array(