blob: ffd37452999d839c46bb9854e98427c782dbd850 (
plain)
1
2
3
4
5
6
7
8
9
10
|
TestHelpers.droppable = {
shouldDrop: function() {
// todo: actually implement this
ok(true, "missing test - untested code is broken code");
},
shouldNotDrop: function() {
// todo: actually implement this
ok(true, "missing test - untested code is broken code");
}
};
|