Remove an unneeded _.object unit test.

Former-commit-id: 2334bda13fbd9bd683b3f650ff47f1a676139319
This commit is contained in:
John-David Dalton
2012-09-06 00:38:22 -07:00
parent 3939fcf6e7
commit 13b1fc6b44

View File

@@ -996,16 +996,6 @@
/*--------------------------------------------------------------------------*/
QUnit.module('lodash.object');
(function() {
test('supports not passing a `values` argument', function() {
deepEqual(_.object(['a', 'b', 'c']), { 'a': undefined, 'b': undefined, 'c': undefined });
});
}());
/*--------------------------------------------------------------------------*/
QUnit.module('lodash.omit');
(function() {