added route loader tests.
This commit is contained in:
15
tests/Fixtures/RouteLoader/routes.php
Normal file
15
tests/Fixtures/RouteLoader/routes.php
Normal file
@@ -0,0 +1,15 @@
|
||||
<?php
|
||||
|
||||
return array(
|
||||
|
||||
'GET /' => function()
|
||||
{
|
||||
return 'GET /';
|
||||
},
|
||||
|
||||
'GET /root' => function()
|
||||
{
|
||||
return 'GET /root';
|
||||
},
|
||||
|
||||
);
|
||||
Reference in New Issue
Block a user