Browse Source

added route test for handles method. fixed bug in route class.

Taylor Otwell 13 years ago
parent
commit
aa427bbd39
2 changed files with 26 additions and 1 deletions
  1. 1 1
      laravel/routing/route.php
  2. 25 0
      tests/cases/laravel/route.test.php

+ 1 - 1
laravel/routing/route.php

@@ -79,7 +79,7 @@ class Route {
 	 */
 	protected static function extract($segment)
 	{
-		$uri = substr($segment, strpos($segment, ' ') + 1);
+		$uri = substr($segment, strpos($segment, ' '));
 
 		return ($uri !== '/') ? trim($uri, '/') : $uri;
 	}

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

@@ -0,0 +1,25 @@
+<?php
+
+class RouteTest extends PHPUnit_Framework_TestCase {
+
+	/**
+	 * Destroy the testing environment.
+	 */
+	public function tearDown()
+	{
+		Request::$route = null;
+	}
+
+	/**
+	 * Tests the Route::handles method.
+	 *
+	 * @group laravel
+	 */
+	public function testHandlesReturnsTrueWhenRouteHandlesTheGivenURI()
+	{
+		$route = new Laravel\Routing\Route('GET /', array('handles' => array('foo/bar')));
+
+		$this->assertTrue($route->handles('foo/bar'));
+	}
+
+}