From 1f713ed9d1751956cb4968365778106a4ac70297 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Sun, 27 Sep 2015 18:41:06 -0700 Subject: [PATCH] Add more wrapper tests. --- test/test.js | 36 ++++++++++++++++++++++++++++++++++-- 1 file changed, 34 insertions(+), 2 deletions(-) diff --git a/test/test.js b/test/test.js index d6971b011..6952e6d25 100644 --- a/test/test.js +++ b/test/test.js @@ -20679,8 +20679,15 @@ (function() { var funcs = [ 'concat', + 'pull', + 'pullAll', + 'pullAt', + 'sampleSize', + 'shuffle', 'slice', - 'splice' + 'splice', + 'toArray', + 'words' ]; _.each(funcs, function(methodName) { @@ -20708,10 +20715,18 @@ (function() { var funcs = [ + 'camelCase', + 'capitalize', + 'ceil', 'clone', + 'deburr', + 'endsWith', + 'escape', + 'escapeRegExp', 'every', 'find', 'first', + 'floor', 'has', 'hasIn', 'includes', @@ -20740,20 +20755,37 @@ 'isString', 'isUndefined', 'join', + 'kebabCase', 'last', 'max', 'maxBy', 'min', 'minBy', + 'pad', + 'padLeft', + 'padRight', 'parseInt', 'pop', + 'repeat', 'shift', + 'snakeCase', + 'startCase', 'sum', 'random', 'reduce', 'reduceRight', + 'round', + 'sample', + 'size', 'some', - 'toInteger' + 'startsWith', + 'toInteger', + 'toString', + 'trim', + 'trimLeft', + 'trimRight', + 'trunc', + 'unescape' ]; _.each(funcs, function(methodName) {