From: rwldrn Date: Tue, 9 Nov 2010 21:31:52 +0000 (-0500) Subject: Support unit test for #6897 X-Git-Url: http://git.asbjorn.biz/?p=jquery.git;a=commitdiff_plain;h=e2d0671f4c260f2bd97fe76269188d5d6fc19dcd Support unit test for #6897 --- diff --git a/test/unit/attributes.js b/test/unit/attributes.js index 2d0a0d6..3eb2474 100644 --- a/test/unit/attributes.js +++ b/test/unit/attributes.js @@ -3,6 +3,31 @@ module("attributes"); var bareObj = function(value) { return value; }; var functionReturningObj = function(value) { return (function() { return value; }); }; +test("jQuery.props: itegrity test", function() { + + expect(1); + + // This must be maintained and equal jQuery.props + // Ensure that accidental or erroneous property + // overwrites don't occur + // This is simply for better code coverage and future proofing. + var propsShouldBe = { + "for": "htmlFor", + "class": "className", + readonly: "readOnly", + maxlength: "maxLength", + cellspacing: "cellSpacing", + rowspan: "rowSpan", + colspan: "colSpan", + tabindex: "tabIndex", + usemap: "useMap", + frameborder: "frameBorder" + }; + + same(propsShouldBe, jQuery.props, "jQuery.props passes integrity check"); + +}); + test("attr(String)", function() { expect(31);