Skip to content

Commit

Permalink
Backing out fb6c038, was causing jQuery.param tests to fail - unfixes…
Browse files Browse the repository at this point in the history
… #7413.
  • Loading branch information
jeresig committed Dec 9, 2010
1 parent bc05cb9 commit b4bb6e1
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 17 deletions.
6 changes: 0 additions & 6 deletions src/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -532,12 +532,6 @@ jQuery.extend({
},

isEmptyObject: function( obj ) {

// Fixes #7413 Check to see if obj passes isPlainObject
if ( !jQuery.isPlainObject( obj ) ) {
return false;
}

for ( var name in obj ) {
return false;
}
Expand Down
15 changes: 4 additions & 11 deletions test/unit/core.js
Original file line number Diff line number Diff line change
Expand Up @@ -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(){
Expand Down

0 comments on commit b4bb6e1

Please sign in to comment.