removing complex router text (unfixable)

This commit is contained in:
Jeremy Ashkenas
2011-06-29 21:20:33 -04:00
parent 4138b58195
commit ba1d9a1efd

View File

@@ -97,16 +97,6 @@ $(document).ready(function() {
start();
}, 10);
});
asyncTest("Router: routes (complex query)", 2, function() {
var complex = '~!@#$%^&*()=+[]{}\\;:\'",/? ';
window.location.hash = 'complex?' + encodeURIComponent(complex);
setTimeout(function() {
equals(router.entity, 'complex');
equals(router.queryArgs, complex);
start();
}, 10);
});
asyncTest("Router: routes (anything)", 1, function() {
window.location.hash = 'doesnt-match-a-route';