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

[ticket/12090] Split finding routes and returning routes into 2 methods

PHPBB3-12090
This commit is contained in:
Joas Schilling
2014-03-09 18:38:21 +01:00
parent 436b1d3577
commit 2eb24d0ace
4 changed files with 25 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ class phpbb_controller_controller_test extends phpbb_test_case
public function test_provider()
{
$provider = new \phpbb\controller\provider($this->extension_manager->get_finder());
$routes = $provider->find(__DIR__);
$routes = $provider->find(__DIR__)->get_routes();
// This will need to be updated if any new routes are defined
$this->assertInstanceOf('Symfony\Component\Routing\Route', $routes->get('core_controller'));