Ensure consistent unit test count depending on build.

Former-commit-id: 390020635374f6fb1165a6adef0648847ec9cb9e
This commit is contained in:
John-David Dalton
2013-03-25 22:06:04 -07:00
parent 39158b0eb6
commit 86890b13c6

View File

@@ -2984,10 +2984,11 @@
'zip'
];
var funcs = _.without.apply(_, [_.functions(_)].concat([
'_',
'_each',
'_iteratorTemplate',
var allMethods = _.reject(_.functions(_), function(methodName) {
return /^_/.test(methodName);
});
var funcs = _.without.apply(_, [allMethods].concat([
'after',
'bind',
'bindAll',