aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/helper.js
blob: b9bc5d6fb28a30cb824057a1f409f6f45fd90209 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
define( [
	"jquery",
	"lib/helper"
], function( $, helper ) {

return $.extend( helper, {
	shouldDrop: function() {

		// todo: actually implement this
		ok( true, "missing test - untested code is broken code" );
	},

	shouldNotDrop: function() {

		// todo: actually implement this
		ok( true, "missing test - untested code is broken code" );
	}
} );

} );