Add _.isEmpty JScript [[DontEnum]] bug test.

Former-commit-id: 3815abeb1d802bd6fc2aada64f7a105aa77a6467
This commit is contained in:
John-David Dalton
2012-05-12 01:11:54 -04:00
parent 6a06bf5efa
commit 258fc518a6

View File

@@ -211,6 +211,16 @@
/*--------------------------------------------------------------------------*/
QUnit.module('lodash.isEmpty');
(function() {
test('fixes the JScript [[DontEnum]] bug (test in IE < 9)', function() {
equal(_.isEmpty(shadowed), false);
});
}());
/*--------------------------------------------------------------------------*/
QUnit.module('lodash.isEqual');
(function() {