Beispiel #1
0
 /**
  * Test that the where method in the Route Object
  * works.
  *
  * @return void
  */
 public function testWhereFunctionInRoute()
 {
     $route = new Route('GET', '/foobar/{month}', ['uses' => 'AcmeController::index']);
     $route->where(['month' => '[0-9]{4}-[0-9]{2}']);
     $this->assertEquals('[0-9]{4}-[0-9]{2}', $route->getRequirement('month'));
 }