Make MessageCache::load() require a language code
[mediawiki.git] / tests / qunit / suites / resources / jquery / jquery.getAttrs.test.js
blobca3f418c3112177bd458a3ede820ab803ce47539
1 ( function ( $ ) {
2 QUnit.module( 'jquery.getAttrs', QUnit.newMwEnvironment() );
4 QUnit.test( 'getAttrs()', 1, function ( assert ) {
5 var attrs = {
6 foo: 'bar',
7 'class': 'lorem',
8 'data-foo': 'data value'
9 },
10 $el = $( '<div>' ).attr( attrs );
12 assert.propEqual( $el.getAttrs(), attrs, 'keys and values match' );
13 } );
14 }( jQuery ) );