aboutsummaryrefslogtreecommitdiffstats
path: root/test
diff options
context:
space:
mode:
authorjeresig <jeresig@gmail.com>2010-12-09 12:32:15 -0500
committerjeresig <jeresig@gmail.com>2010-12-09 12:32:15 -0500
commitfb6c038bf00296480234c971a1664ac01ca1479e (patch)
tree828c64e4d09a181949d5663b8963499136655b55 /test
parent8943b427f67766fd8d9e8a95b471ff4077213be2 (diff)
parentfc563cc42a4cf9b8d717f1fa4f397e76a132d90a (diff)
downloadjquery-fb6c038bf00296480234c971a1664ac01ca1479e.tar.gz
jquery-fb6c038bf00296480234c971a1664ac01ca1479e.zip
Merge branch 'bug_7413' of https://github.com/rwldrn/jquery into rwldrn-bug_7413
Diffstat (limited to 'test')
-rw-r--r--test/unit/core.js15
1 files changed, 11 insertions, 4 deletions
diff --git a/test/unit/core.js b/test/unit/core.js
index 705778370..3cbf3f677 100644
--- a/test/unit/core.js
+++ b/test/unit/core.js
@@ -848,13 +848,20 @@ test("jQuery.makeArray", function(){
});
test("jQuery.isEmptyObject", function(){
- expect(2);
+ expect(11);
equals(true, jQuery.isEmptyObject({}), "isEmptyObject on empty object literal" );
equals(false, jQuery.isEmptyObject({a:1}), "isEmptyObject on non-empty object literal" );
-
- // What about this ?
- // equals(true, jQuery.isEmptyObject(null), "isEmptyObject on null" );
+ 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)" );
+
});
test("jQuery.proxy", function(){