From 7e7f7927108eb25f9710d54ed6cb4a8ab59326f6 Mon Sep 17 00:00:00 2001 From: John-David Dalton Date: Thu, 28 Feb 2013 02:48:11 -0800 Subject: [PATCH] Add `_.parseInt` and `_.runInContext` to the `underscore` build tests. Former-commit-id: a5f8d936e912d0bd53f689d23c3393731fe97f47 --- test/test-build.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/test/test-build.js b/test/test-build.js index 0e7af1455..fa59c7db2 100644 --- a/test/test-build.js +++ b/test/test-build.js @@ -933,7 +933,9 @@ 'forOwn', 'isPlainObject', 'merge', - 'partialRight' + 'parseInt', + 'partialRight', + 'runInContext' ], function(methodName) { equal(lodash[methodName], undefined, '_.' + methodName + ' should not exist: ' + basename); });