From ef909e8a5466d777ad06581305afa68e544a30cd Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 19 Jul 2015 10:02:23 -0700 Subject: [PATCH] Remove `_.support` tests. --- test/test.js | 25 ------------------------- 1 file changed, 25 deletions(-) diff --git a/test/test.js b/test/test.js index 274ac0697..5bdf0d559 100644 --- a/test/test.js +++ b/test/test.js @@ -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() {