aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_test_helpers.js
blob: 460fa1aa6c03b5eae703f51d79f4431381052205 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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");
	}
} );

} );