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

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

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

	shouldNotDrop: function( assert ) {

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

} );