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

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" );
	}
} );

} );