Skip to content

Commit 7057de4

Browse files
committed
test($urlRouter): update to UrlMatcher interface
1 parent 32b27db commit 7057de4

File tree

1 file changed

+7
-1
lines changed

1 file changed

+7
-1
lines changed

test/urlRouterSpec.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -97,7 +97,13 @@ describe("UrlRouter", function () {
9797

9898
it("should allow custom URL matchers", function () {
9999
var custom = {
100-
url: { exec: function() {}, format: function() {}, concat: function() {} },
100+
url: {
101+
exec: function() {},
102+
format: function() {},
103+
concat: function() {},
104+
validates: function() {},
105+
parameters: function() {}
106+
},
101107
handler: function() {}
102108
};
103109

0 commit comments

Comments
 (0)