diff options
author | Richard Worth <rdworth@gmail.com> | 2008-06-22 05:37:11 +0000 |
---|---|---|
committer | Richard Worth <rdworth@gmail.com> | 2008-06-22 05:37:11 +0000 |
commit | b876be002d23c0e723c9ca10e4be8fb3704cf8b5 (patch) | |
tree | 2c20816a6720d6b13af2e8ebe121b8d52b990146 /tests | |
parent | ca17b9953ecfdb2e3c86c74b2e7cfa2cc4373d56 (diff) | |
download | jquery-ui-b876be002d23c0e723c9ca10e4be8fb3704cf8b5.tar.gz jquery-ui-b876be002d23c0e723c9ca10e4be8fb3704cf8b5.zip |
tests dialog - added missing tests (placeholders)
Diffstat (limited to 'tests')
-rw-r--r-- | tests/dialog.js | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/tests/dialog.js b/tests/dialog.js index 7cd6921a8..161417e96 100644 --- a/tests/dialog.js +++ b/tests/dialog.js @@ -402,6 +402,30 @@ test("open", function() { el.remove();
});
+test("dragStart", function() {
+ ok(false, "missing test");
+});
+
+test("drag", function() {
+ ok(false, "missing test");
+});
+
+test("dragStop", function() {
+ ok(false, "missing test");
+});
+
+test("resizeStart", function() {
+ ok(false, "missing test");
+});
+
+test("resize", function() {
+ ok(false, "missing test");
+});
+
+test("resizeStop", function() {
+ ok(false, "missing test");
+});
+
test("close", function() {
expect(2);
el = $('<div/>').dialog({
|