Changeset 920

Show
Ignore:
Timestamp:
07/22/08 14:57:19 (2 months ago)
Author:
kaste
Message:

Small reorder of routes in test-file.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/kaste/PHPUnit_TestSuite/tests/fixtures/routes.php

    r918 r920  
    33// You can find more about routes on /lib/AkRouters.php and /test/test_AkRouter.php 
    44 
    5 $Map->connect('/:controller/:action/:id', array('controller' => 'page', 'action' => 'index', 'id'=>OPTIONAL),array('id'=>'\d{1,}')); 
    65$Map->connect('/', array('controller' => 'page', 'action' => 'index')); 
    76$Map->connect('/:artist/:album/tags',array('controller'=>'tags')); 
    87$Map->connect('/admin/logs/:controller/:action/:id',array('module'=>'admin/logs')); 
     8$Map->connect('/:controller/:action/:id', array('controller' => 'page', 'action' => 'index'),array('id'=>'\d{1,}')); 
    99$Map->connect('/:module/:controller/:action/:id',array('action'=>COMPULSORY)); 
    1010