diff options
author | Scott González <scott.gonzalez@gmail.com> | 2013-02-26 10:13:42 -0500 |
---|---|---|
committer | Scott González <scott.gonzalez@gmail.com> | 2013-02-26 10:13:42 -0500 |
commit | d0ad572349beadc99810ecd53a532bf5f261343d (patch) | |
tree | b07beddd40ed5b399c19e691ebcf4bb4e720f8d5 /tests | |
parent | 1c80735acb20a468300a53f85ef49b065d40af3e (diff) | |
download | jquery-ui-d0ad572349beadc99810ecd53a532bf5f261343d.tar.gz jquery-ui-d0ad572349beadc99810ecd53a532bf5f261343d.zip |
Droppable tests: Cleanup.
Diffstat (limited to 'tests')
-rw-r--r-- | tests/unit/droppable/droppable_events.js | 13 |
1 files changed, 4 insertions, 9 deletions
diff --git a/tests/unit/droppable/droppable_events.js b/tests/unit/droppable/droppable_events.js index 707eea1f4..4b8fe5acd 100644 --- a/tests/unit/droppable/droppable_events.js +++ b/tests/unit/droppable/droppable_events.js @@ -1,9 +1,6 @@ -/* - * droppable_events.js - */ -(function($) { +(function( $ ) { -module("droppable: events"); +module( "droppable: events" ); test( "droppable destruction/recreation on drop event", function() { expect( 1 ); @@ -38,9 +35,7 @@ test( "droppable destruction/recreation on drop event", function() { ok( !droppable2.hasClass( "active" ), "subsequent droppable no longer active" ); }); -// this is here to make JSHint pass "unused", and we don't want to -// remove the parameter for when we finally implement -$.noop(); + // todo: comment the following in when ready to actually test /* @@ -65,4 +60,4 @@ test("drop", function() { }); */ -})(jQuery); +})( jQuery ); |