Browse Source

added wildcard test to route test.

Taylor Otwell 13 years ago
parent
commit
5c03c1de56
1 changed files with 1 additions and 0 deletions
  1. 1 0
      tests/cases/laravel/route.test.php

+ 1 - 0
tests/cases/laravel/route.test.php

@@ -19,6 +19,7 @@ class RouteTest extends PHPUnit_Framework_TestCase {
 	{
 	{
 		$route = new Laravel\Routing\Route('GET /', array('handles' => array('foo/bar')));
 		$route = new Laravel\Routing\Route('GET /', array('handles' => array('foo/bar')));
 
 
+		$this->assertTrue($route->handles('foo/*'));
 		$this->assertTrue($route->handles('foo/bar'));
 		$this->assertTrue($route->handles('foo/bar'));
 	}
 	}