Skip to content
This repository has been archived by the owner on Oct 8, 2021. It is now read-only.

Commit

Permalink
remove proxy function tests
Browse files Browse the repository at this point in the history
  • Loading branch information
johnbender committed Oct 17, 2012
1 parent 0ff7e29 commit b793599
Showing 1 changed file with 0 additions and 15 deletions.
15 changes: 0 additions & 15 deletions tests/unit/core/core.js
Expand Up @@ -187,19 +187,4 @@

$.mobile.ignoreContentEnabled = false;
});

test( "proxyMany assigns the correct context", function() {
var proxied = $.proxyMany({
foo: function() {
deepEqual( this.baz, "bak", "the baz property of the context should be bak in foo" );
},

bar: function() {
deepEqual( this.baz, "bak", "the baz property of the context should be bak in bar" );
}
}, { baz: "bak" });

proxied.foo();
proxied.bar();
});
})(jQuery);

0 comments on commit b793599

Please sign in to comment.