diff options
author | jeresig <jeresig@gmail.com> | 2010-12-09 13:07:44 -0500 |
---|---|---|
committer | jeresig <jeresig@gmail.com> | 2010-12-09 13:07:44 -0500 |
commit | b4bb6e11268c5f2fb26ddc3ff564d8656cf58f93 (patch) | |
tree | 6de7189f537ecfc3cb3aae3d5b38d2786e047b35 /test/unit/core.js | |
parent | bc05cb9d80b63d8a324a3773a39ac1baa181c4d2 (diff) | |
download | jquery-b4bb6e11268c5f2fb26ddc3ff564d8656cf58f93.tar.gz jquery-b4bb6e11268c5f2fb26ddc3ff564d8656cf58f93.zip |
Backing out fb6c038bf00296480234c971a1664ac01ca1479e, was causing jQuery.param tests to fail - unfixes #7413.
Diffstat (limited to 'test/unit/core.js')
-rw-r--r-- | test/unit/core.js | 15 |
1 files changed, 4 insertions, 11 deletions
diff --git a/test/unit/core.js b/test/unit/core.js index 3cbf3f677..705778370 100644 --- a/test/unit/core.js +++ b/test/unit/core.js @@ -848,20 +848,13 @@ test("jQuery.makeArray", function(){ }); test("jQuery.isEmptyObject", function(){ - expect(11); + expect(2); equals(true, jQuery.isEmptyObject({}), "isEmptyObject on empty object literal" ); equals(false, jQuery.isEmptyObject({a:1}), "isEmptyObject on non-empty object literal" ); - equals(false, jQuery.isEmptyObject(1), "isEmptyObject on number (wrong argument type)"); - equals(false, jQuery.isEmptyObject(0), "isEmptyObject on falsy number (wrong argument type)"); - equals(false, jQuery.isEmptyObject("test"), "isEmptyObject on string (wrong argument type)"); - equals(false, jQuery.isEmptyObject(""), "isEmptyObject on falsy string (wrong argument type)"); - equals(false, jQuery.isEmptyObject([1,2,3]), "isEmptyObject on array (wrong argument type)"); - equals(false, jQuery.isEmptyObject([]), "isEmptyObject on an empty array (wrong argument type)"); - equals(false, jQuery.isEmptyObject(undefined), "isEmptyObject on undefined (wrong argument type)"); - equals(false, jQuery.isEmptyObject(false), "isEmptyObject on undefined (wrong argument type)"); - equals(false, jQuery.isEmptyObject(null), "isEmptyObject on null (wrong argument type)" ); - + + // What about this ? + // equals(true, jQuery.isEmptyObject(null), "isEmptyObject on null" ); }); test("jQuery.proxy", function(){ |