sortable-tests.js revision 1cc8349502ad1442df2f77452ad813fc41433415
var template = {
name: 'Sortable Test',
setUp : function() {
},
tearDown : function() {
},
'test: loading': function() {
},
'test: instantiate': function() {
container: '#cont1',
nodes: 'li',
handles: ['a']
});
container: '#cont2',
nodes: 'li',
handles: ['a']
});
},
'test: getSortable': function() {
},
'test: full join': function() {
},
'test: outer join': function() {
},
'test: inner join': function() {
},
'test: no join': function() {
},
'test: ordering': function() {
var items = [];
});
},
'test: dragging start': function() {
},
'test: startDrag': function() {
sort._onDragStart();
},
'test: onDrag': function() {
var i = 0;
for (i = 100; i <=200; i++) {
pageY: i
});
}
for (i = 0; i <=200; i++) {
pageY: i*-1
});
}
},
'test: dragEnd event': function() {
sort._onDragEnd();
},
'test: DD passthru for errors': function() {
},
'test: destroy': function() {
}
};
});