You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
405 B
22 lines
405 B
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" );
|
|
}
|
|
} );
|
|
|
|
} );
|