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() {
|
2015-08-24 12:59:32 +00:00
|
|
|
|
2012-11-03 20:17:16 +00:00
|
|
|
// todo: actually implement this
|
2015-08-24 12:59:32 +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() {
|
2015-08-24 12:59:32 +00:00
|
|
|
|
2012-11-03 20:17:16 +00:00
|
|
|
// todo: actually implement this
|
2015-08-24 12:59:32 +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
|
|
|
|
|
|
|
} );
|