2015-04-07 14:30:07 +00:00
|
|
|
define( [
|
|
|
|
"jquery",
|
|
|
|
"lib/helper"
|
|
|
|
], function( $, helper ) {
|
2015-04-07 00:35:27 +00:00
|
|
|
|
2015-04-07 14:30:07 +00:00
|
|
|
return $.extend( helper, {
|
2012-11-03 20:17:16 +00:00
|
|
|
shouldDrop: function() {
|
|
|
|
// todo: actually implement this
|
2012-12-26 13:08:48 +00:00
|
|
|
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
|
|
|
|
2012-11-03 20:17:16 +00:00
|
|
|
shouldNotDrop: function() {
|
|
|
|
// todo: actually implement this
|
2012-12-26 13:08:48 +00:00
|
|
|
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
|
|
|
|
|
|
|
} );
|