summaryrefslogtreecommitdiff
path: root/tests/qunit/suites/resources/jquery/jquery.getAttrs.test.js
diff options
context:
space:
mode:
Diffstat (limited to 'tests/qunit/suites/resources/jquery/jquery.getAttrs.test.js')
-rw-r--r--tests/qunit/suites/resources/jquery/jquery.getAttrs.test.js13
1 files changed, 0 insertions, 13 deletions
diff --git a/tests/qunit/suites/resources/jquery/jquery.getAttrs.test.js b/tests/qunit/suites/resources/jquery/jquery.getAttrs.test.js
deleted file mode 100644
index 0b7e87ee..00000000
--- a/tests/qunit/suites/resources/jquery/jquery.getAttrs.test.js
+++ /dev/null
@@ -1,13 +0,0 @@
-( function ( $ ) {
- QUnit.module( 'jquery.getAttrs', QUnit.newMwEnvironment() );
-
- QUnit.test( 'Check', 1, function ( assert ) {
- var attrs = {
- foo: 'bar',
- 'class': 'lorem'
- },
- $el = $( '<div>' ).attr( attrs );
-
- assert.deepEqual( $el.getAttrs(), attrs, 'getAttrs() return object should match the attributes set, no more, no less' );
- } );
-}( jQuery ) );