| Current Path : /var/www/element/data/www/wiki.element.ru/tests/qunit/suites/resources/jquery/ |
| Current File : /var/www/element/data/www/wiki.element.ru/tests/qunit/suites/resources/jquery/jquery.getAttrs.js |
module( 'jquery.getAttrs.js' );
test( '-- Initial check', function() {
expect(1);
ok( $.fn.getAttrs, 'jQuery.fn.getAttrs defined' );
} );
test( 'Check', function() {
expect(1);
var attrs = {
foo: 'bar',
'class': 'lorem'
},
$el = $( '<div>', attrs );
deepEqual( $el.getAttrs(), attrs, 'getAttrs() return object should match the attributes set, no more, no less' );
} );