Browse Source

added mroe tests for route.

Taylor Otwell 13 years ago
parent
commit
659a09a11b
1 changed files with 8 additions and 1 deletions
  1. 8 1
      tests/cases/laravel/route.test.php

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

@@ -15,12 +15,19 @@ class RouteTest extends PHPUnit_Framework_TestCase {
 	 *
 	 * @group laravel
 	 */
-	public function testHandlesReturnsTrueWhenRouteHandlesTheGivenURI()
+	public function testHandlesIndicatesIfTheRouteHandlesAGivenURI()
 	{
 		$route = new Laravel\Routing\Route('GET /', array('handles' => array('foo/bar')));
 
 		$this->assertTrue($route->handles('foo/*'));
 		$this->assertTrue($route->handles('foo/bar'));
+		$this->assertFalse($route->handles('baz'));
+
+		$route = new Laravel\Routing\Route('GET /', array('handles' => array('/', 'home')));
+
+		$this->assertTrue($route->handles('/'));
+		$this->assertTrue($route->handles('home'));
+		$this->assertFalse($route->handles('foo'));
 	}
 
 }