route.test.php 498 B

1234567891011121314151617181920212223242526
  1. <?php
  2. class RouteTest extends PHPUnit_Framework_TestCase {
  3. /**
  4. * Destroy the testing environment.
  5. */
  6. public function tearDown()
  7. {
  8. Request::$route = null;
  9. }
  10. /**
  11. * Tests the Route::handles method.
  12. *
  13. * @group laravel
  14. */
  15. public function testHandlesReturnsTrueWhenRouteHandlesTheGivenURI()
  16. {
  17. $route = new Laravel\Routing\Route('GET /', array('handles' => array('foo/bar')));
  18. $this->assertTrue($route->handles('foo/*'));
  19. $this->assertTrue($route->handles('foo/bar'));
  20. }
  21. }