Skip to content

Commit

Permalink
test($urlRouter): update to UrlMatcher interface
Browse files Browse the repository at this point in the history
  • Loading branch information
nateabele committed Apr 16, 2014
1 parent 32b27db commit 7057de4
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion test/urlRouterSpec.js
Original file line number Diff line number Diff line change
Expand Up @@ -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() {}
};

Expand Down

0 comments on commit 7057de4

Please sign in to comment.