unit tests: fixed missing tests to hide with new qunit checkbox

This commit is contained in:
Richard Worth 2009-02-01 01:57:28 +00:00
parent 63f7e01d61
commit b900ea855c
2 changed files with 21 additions and 21 deletions

View File

@ -306,7 +306,7 @@ test("buttons", function() {
}); });
test("closeOnEscape", function() { test("closeOnEscape", function() {
ok(false, 'missing test'); ok(false, 'missing test - untested code is broken code');
}); });
test("closeText", function() { test("closeText", function() {
@ -455,11 +455,11 @@ test("minWidth", function() {
}); });
test("modal", function() { test("modal", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("position", function() { test("position", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("resizable", function() { test("resizable", function() {
@ -479,7 +479,7 @@ test("resizable", function() {
}); });
test("stack", function() { test("stack", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("title", function() { test("title", function() {

View File

@ -20,11 +20,11 @@ var defaults = {
var el, drg; var el, drg;
function shouldBeDroppable() { function shouldBeDroppable() {
ok(false, "missing test - should be droppable"); ok(false, 'missing test - untested code is broken code');
} }
function shouldNotBeDroppable() { function shouldNotBeDroppable() {
ok(false, "missing test - should not be droppable"); ok(false, 'missing test - untested code is broken code');
} }
// Droppable Tests // Droppable Tests
@ -144,15 +144,15 @@ test("option setting", function() {
module("droppable: Options"); module("droppable: Options");
test("accept, selector", function() { test("accept, selector", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("accept, fn", function() { test("accept, fn", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("activeClass", function() { test("activeClass", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("cssNamespace", function() { test("cssNamespace", function() {
@ -168,53 +168,53 @@ test("cssNamespace", function() {
}); });
test("greedy", function() { test("greedy", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("hoverClass", function() { test("hoverClass", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("scope", function() { test("scope", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("tolerance, fit", function() { test("tolerance, fit", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("tolerance, intersect", function() { test("tolerance, intersect", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("tolerance, pointer", function() { test("tolerance, pointer", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("tolerance, touch", function() { test("tolerance, touch", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
module("droppable: Callbacks"); module("droppable: Callbacks");
test("activate", function() { test("activate", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("deactivate", function() { test("deactivate", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("over", function() { test("over", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("out", function() { test("out", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
test("drop", function() { test("drop", function() {
ok(false, "missing test"); ok(false, 'missing test - untested code is broken code');
}); });
module("droppable: Tickets"); module("droppable: Tickets");