2015-04-07 14:30:07 +00:00
|
|
|
define( [
|
2016-04-03 16:32:14 +00:00
|
|
|
"qunit",
|
2015-04-07 14:30:07 +00:00
|
|
|
"jquery",
|
|
|
|
"lib/helper"
|
2016-04-03 16:32:14 +00:00
|
|
|
], function( QUnit, $, helper ) {
|
2015-04-07 00:35:27 +00:00
|
|
|
|
2015-04-07 14:30:07 +00:00
|
|
|
return $.extend( helper, {
|
2016-04-03 16:32:14 +00:00
|
|
|
shouldDrop: function( assert ) {
|
2015-08-24 12:59:32 +00:00
|
|
|
|
2016-04-03 16:32:14 +00:00
|
|
|
// Todo: actually implement this
|
|
|
|
assert.ok( true, "missing test - untested code is broken code" );
|
2012-11-03 20:17:16 +00:00
|
|
|
},
|
2015-04-07 14:30:07 +00:00
|
|
|
|
2016-04-03 16:32:14 +00:00
|
|
|
shouldNotDrop: function( assert ) {
|
2015-08-24 12:59:32 +00:00
|
|
|
|
2016-04-03 16:32:14 +00:00
|
|
|
// Todo: actually implement this
|
|
|
|
assert.ok( true, "missing test - untested code is broken code" );
|
2012-11-03 20:17:16 +00:00
|
|
|
}
|
2015-04-07 14:30:07 +00:00
|
|
|
} );
|
2015-04-07 00:35:27 +00:00
|
|
|
|
|
|
|
} );
|