Example #1
0
 public function testStaticRoute()
 {
     $router = Router::fromArray(array(array('/foo/<foo:1>', 'foo')));
     $this->assertEquals('/foo/1', $router->createUrl('foo', array('foo' => 1)));
     $this->assertEquals('foo', $router->matchUrl('foo/1'));
 }