Remove _.support tests.

This commit is contained in:
John-David Dalton
2015-07-19 10:02:23 -07:00
parent 0a24e9854b
commit ef909e8a54

View File

@@ -14499,31 +14499,6 @@
/*--------------------------------------------------------------------------*/
QUnit.module('lodash.support');
(function() {
test('should contain properties with boolean values', 1, function() {
ok(_.every(_.values(_.support), function(value) {
return value === true || value === false;
}));
});
test('should not contain minified properties (test production builds)', 1, function() {
var props = [
'enumErrorProps',
'enumPrototypes',
'nonEnumShadows',
'ownLast',
'spliceObjects',
'unindexedChars'
];
ok(_.isEmpty(_.difference(_.keys(_.support), props)));
});
}());
/*--------------------------------------------------------------------------*/
QUnit.module('lodash.tap');
(function() {