diff options
author | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
---|---|---|
committer | Pierre Schmitz <pierre@archlinux.de> | 2012-05-03 13:01:35 +0200 |
commit | d9022f63880ce039446fba8364f68e656b7bf4cb (patch) | |
tree | 16b40fbf17bf7c9ee6f4ead25b16dd192378050a /tests/qunit/suites/resources/jquery/jquery.getAttrs.js | |
parent | 27cf83d177256813e2e802241085fce5dd0f3fb9 (diff) |
Update to MediaWiki 1.19.0
Diffstat (limited to 'tests/qunit/suites/resources/jquery/jquery.getAttrs.js')
-rw-r--r-- | tests/qunit/suites/resources/jquery/jquery.getAttrs.js | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/tests/qunit/suites/resources/jquery/jquery.getAttrs.js b/tests/qunit/suites/resources/jquery/jquery.getAttrs.js deleted file mode 100644 index 3d3d01e1..00000000 --- a/tests/qunit/suites/resources/jquery/jquery.getAttrs.js +++ /dev/null @@ -1,17 +0,0 @@ -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' ); -} ); |