summaryrefslogtreecommitdiff
path: root/tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js
diff options
context:
space:
mode:
authorLuke Shumaker <LukeShu@sbcglobal.net>2014-05-05 15:30:48 -0400
committerLuke Shumaker <LukeShu@sbcglobal.net>2014-05-05 15:30:48 -0400
commit3d86add3dfa5e0b3ead9859593d4a52cf7555a34 (patch)
tree453d8bd3fda4dbb3020017ea1a469291da5cdc71 /tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js
parent064cec79ca4c8201de0d06bbca6cb7a5345d11be (diff)
parent2e44b49a2db3026050b136de9b00f749dd3ff939 (diff)
Merge branch 'archwiki'
Diffstat (limited to 'tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js')
-rw-r--r--tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js37
1 files changed, 0 insertions, 37 deletions
diff --git a/tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js b/tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js
deleted file mode 100644
index 234b19cb..00000000
--- a/tests/qunit/suites/resources/jquery/jquery.delayedBind.test.js
+++ /dev/null
@@ -1,37 +0,0 @@
-( function ( $ ) {
- QUnit.asyncTest( 'jquery.delayedBind with data option', 2, function ( assert ) {
- var $fixture = $( '<div>' ).appendTo( '#qunit-fixture' ),
- data = {
- magic: 'beeswax'
- },
- delay = 50;
-
- $fixture.delayedBind( delay, 'testevent', data, function ( e ) {
- assert.ok( true, 'testevent fired' );
- assert.ok( e.data === data, 'data is passed through delayedBind' );
- QUnit.start();
- } );
-
- // We'll trigger it thrice, but it should only happen once.
- $fixture.trigger( 'testevent', {} );
- $fixture.trigger( 'testevent', {} );
- $fixture.trigger( 'testevent', {} );
- $fixture.trigger( 'testevent', {} );
- } );
-
- QUnit.asyncTest( 'jquery.delayedBind without data option', 1, function ( assert ) {
- var $fixture = $( '<div>' ).appendTo( '#qunit-fixture' ),
- delay = 50;
-
- $fixture.delayedBind( delay, 'testevent', function () {
- assert.ok( true, 'testevent fired' );
- QUnit.start();
- } );
-
- // We'll trigger it thrice, but it should only happen once.
- $fixture.trigger( 'testevent', {} );
- $fixture.trigger( 'testevent', {} );
- $fixture.trigger( 'testevent', {} );
- $fixture.trigger( 'testevent', {} );
- } );
-}( jQuery ) );