Add more wrapper tests.

This commit is contained in:
John-David Dalton
2015-09-27 18:41:06 -07:00
parent 2cb4829536
commit 1f713ed9d1

View File

@@ -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) {