1
0
mirror of https://github.com/phpbb/phpbb.git synced 2025-07-31 05:50:42 +02:00

[ticket/12620] Add support of the environments for the ext routing files

PHPBB3-12620
This commit is contained in:
Tristan Darricau
2014-09-05 16:33:57 +02:00
parent 7cd0fd83b8
commit 014eed385b
7 changed files with 40 additions and 8 deletions

View File

@@ -30,6 +30,11 @@ class phpbb_controller_controller_test extends phpbb_test_case
'ext_active' => '1',
'ext_path' => 'ext/vendor2/foo/',
),
'vendor2/bar' => array(
'ext_name' => 'vendor2/bar',
'ext_active' => '1',
'ext_path' => 'ext/vendor2/bar/',
),
));
}
@@ -49,6 +54,9 @@ class phpbb_controller_controller_test extends phpbb_test_case
$this->assertInstanceOf('Symfony\Component\Routing\Route', $routes->get('controller2'));
$this->assertEquals('/foo/bar', $routes->get('controller2')->getPath());
$this->assertInstanceOf('Symfony\Component\Routing\Route', $routes->get('controller3'));
$this->assertEquals('/bar', $routes->get('controller3')->getPath());
$this->assertNull($routes->get('controller_noroute'));
}