From 0b922b1ed1f87824795ae85d26f4fd2150c6a9fc Mon Sep 17 00:00:00 2001 From: jdalton Date: Sun, 8 Feb 2015 15:43:39 -0800 Subject: [PATCH] Move `_.support` tests to be in alphebetic API order. --- test/test.js | 70 ++++++++++++++++++++++++++-------------------------- 1 file changed, 35 insertions(+), 35 deletions(-) diff --git a/test/test.js b/test/test.js index 10bba4d21..5e7f53aec 100644 --- a/test/test.js +++ b/test/test.js @@ -12278,41 +12278,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 = [ - 'argsTag', - 'argsObject', - 'dom', - 'enumErrorProps', - 'enumPrototypes', - 'fastBind', - 'funcDecomp', - 'funcNames', - 'hostObject', - 'nodeTag', - 'nonEnumArgs', - 'nonEnumShadows', - 'nonEnumStrings', - 'ownLast', - 'spliceObjects', - 'unindexedChars' - ]; - - ok(_.isEmpty(_.difference(_.keys(_.support), props))); - }); - }()); - - /*--------------------------------------------------------------------------*/ - QUnit.module('lodash.startsWith'); (function() { @@ -12390,6 +12355,41 @@ /*--------------------------------------------------------------------------*/ + 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 = [ + 'argsTag', + 'argsObject', + 'dom', + 'enumErrorProps', + 'enumPrototypes', + 'fastBind', + 'funcDecomp', + 'funcNames', + 'hostObject', + 'nodeTag', + 'nonEnumArgs', + 'nonEnumShadows', + 'nonEnumStrings', + 'ownLast', + 'spliceObjects', + 'unindexedChars' + ]; + + ok(_.isEmpty(_.difference(_.keys(_.support), props))); + }); + }()); + + /*--------------------------------------------------------------------------*/ + QUnit.module('lodash.tap'); (function() {