From 7057de4e3487fa5621b17d4ae113e145732a55a5 Mon Sep 17 00:00:00 2001 From: Nate Abele Date: Wed, 16 Apr 2014 08:13:21 -0400 Subject: [PATCH] test($urlRouter): update to UrlMatcher interface --- test/urlRouterSpec.js | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/test/urlRouterSpec.js b/test/urlRouterSpec.js index e4183d8b2..8cc41698f 100644 --- a/test/urlRouterSpec.js +++ b/test/urlRouterSpec.js @@ -97,7 +97,13 @@ describe("UrlRouter", function () { it("should allow custom URL matchers", function () { var custom = { - url: { exec: function() {}, format: function() {}, concat: function() {} }, + url: { + exec: function() {}, + format: function() {}, + concat: function() {}, + validates: function() {}, + parameters: function() {} + }, handler: function() {} };