aboutsummaryrefslogtreecommitdiffstats
path: root/tests/unit/droppable/droppable_core.js
blob: 21763bc63dfdf983888e120d35f9faa2f12ecf51 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
/*
 * droppable_core.js
 */

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');
	}
};

(function($) {

module("droppable: core");

test("element types", function() {
	var typeNames = ('p,h1,h2,h3,h4,h5,h6,blockquote,ol,ul,dl,div,form' +
		',table,fieldset,address,ins,del,em,strong,q,cite,dfn,abbr' +
		',acronym,code,samp,kbd,var,img,hr' +
		',input,button,label,select,iframe').split(',');

	expect( typeNames.length );

	$.each(typeNames, function(i) {
		var typeName = typeNames[i],
			el = $(document.createElement(typeName)).appendTo('body');

		(typeName === 'table' && el.append("<tr><td>content</td></tr>"));
		el.droppable();
		TestHelpers.droppable.shouldDrop();
		el.droppable("destroy");
		el.remove();
	});
});

})(jQuery);