Cleanup test.js and README.md.

Former-commit-id: af3372f58ecf8d979d22c88193589857c06ff7c1
This commit is contained in:
John-David Dalton
2012-08-21 02:31:40 -07:00
parent feeb38293d
commit cc150ff9d2
2 changed files with 4 additions and 5 deletions

View File

@@ -1555,7 +1555,7 @@
QUnit.module('lodash methods');
(function() {
test('should allow a falsey arguments', function() {
test('should allow falsey arguments', function() {
var funcs = _.without.apply(_, [_.functions(_)].concat([
'_',
'_iteratorTemplate',
@@ -1588,7 +1588,7 @@
}
});
ok(pass, methodName + ' allows a falsey arguments');
ok(pass, methodName + ' allows falsey arguments');
});
});
}());