public function testWithAnIntegerAsADefaultValue() {
$routes = $this
->getRoutes('test', new Route('/{default}', array(
'default' => 0,
)));
$this
->assertEquals('/app.php/foo', $this
->getGenerator($routes)
->generate('test', array(
'default' => 'foo',
)));
}