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' 'zip'
]; ];
var funcs = _.without.apply(_, [_.functions(_)].concat([ var allMethods = _.reject(_.functions(_), function(methodName) {
'_', return /^_/.test(methodName);
'_each', });
'_iteratorTemplate',
var funcs = _.without.apply(_, [allMethods].concat([
'after', 'after',
'bind', 'bind',
'bindAll', 'bindAll',