From 5c03c1de560996197e71e394cca3da61982308e6 Mon Sep 17 00:00:00 2001 From: Taylor Otwell Date: Wed, 18 Jan 2012 11:26:08 -0600 Subject: [PATCH] added wildcard test to route test. --- tests/cases/laravel/route.test.php | 1 + 1 file changed, 1 insertion(+) diff --git a/tests/cases/laravel/route.test.php b/tests/cases/laravel/route.test.php index 12e1af9f..34943a45 100644 --- a/tests/cases/laravel/route.test.php +++ b/tests/cases/laravel/route.test.php @@ -19,6 +19,7 @@ public function testHandlesReturnsTrueWhenRouteHandlesTheGivenURI() { $route = new Laravel\Routing\Route('GET /', array('handles' => array('foo/bar'))); + $this->assertTrue($route->handles('foo/*')); $this->assertTrue($route->handles('foo/bar')); }