added route loader tests.

This commit is contained in:
Taylor Otwell
2011-10-26 22:27:19 -05:00
parent 0a2587d291
commit e05b05a33b
5 changed files with 112 additions and 0 deletions

View File

@@ -0,0 +1,15 @@
<?php
return array(
'GET /user' => function()
{
return 'GET /user';
},
'GET /user/profile' => function()
{
return 'GET /user/profile';
},
);