]> source.dussan.org Git - jquery-ui.git/commitdiff
Resizable tests: Remove all bad tests.
authorScott González <scott.gonzalez@gmail.com>
Fri, 20 Apr 2012 15:23:37 +0000 (11:23 -0400)
committerScott González <scott.gonzalez@gmail.com>
Fri, 20 Apr 2012 15:23:37 +0000 (11:23 -0400)
tests/unit/resizable/resizable_defaults.js
tests/unit/resizable/resizable_events.js
tests/unit/resizable/resizable_methods.js

index c46e1078197fa9468a25a7ac74412921db4e0447..617cdd2ad59a5c32e26d939afa6b0c5a907bcc95 100644 (file)
@@ -19,6 +19,9 @@ TestHelpers.commonWidgetTests('resizable', {
                maxWidth: null,
                minHeight: 10,
                minWidth: 10,
-               zIndex: 1000
+               zIndex: 1000,
+
+               // callbacks
+               create: null
        }
 });
index e8041f06429af707ec49436fc51e3a0b62361def..52d55731c9fcc93dceb63e33b60a22b35f48893a 100644 (file)
@@ -5,16 +5,4 @@
 
 module("resizable: events");
 
-test("start", function() {
-       ok(false, "missing test - untested code is broken code.");
-});
-
-test("resize", function() {
-       ok(false, "missing test - untested code is broken code.");
-});
-
-test("stop", function() {
-       ok(false, "missing test - untested code is broken code.");
-});
-
 })(jQuery);
index 2b4c4256cb164fc8886d058cf4b1a7cbada9823e..87859acf700a54ab8c222fe46fb6ac586b63fd2d 100644 (file)
@@ -5,60 +5,5 @@
 
 module("resizable: methods");
 
-test("init", function() {
-       expect(6);
-
-       $("<div></div>").appendTo('body').resizable().remove();
-       ok(true, '.resizable() called on element');
-
-       $([]).resizable().remove();
-       ok(true, '.resizable() called on empty collection');
-
-       $('<div></div>').resizable().remove();
-       ok(true, '.resizable() called on disconnected DOMElement');
-
-       $('<div></div>').resizable().resizable("foo").remove();
-       ok(true, 'arbitrary method called after init');
-
-       el = $('<div></div>').resizable();
-       var foo = el.resizable("option", "foo");
-       el.remove();
-       ok(true, 'arbitrary option getter after init');
-
-       $('<div></div>').resizable().resizable("option", "foo", "bar").remove();
-       ok(true, 'arbitrary option setter after init');
-});
-
-test("destroy", function() {
-       $("<div></div>").appendTo('body').resizable().resizable("destroy").remove();
-       ok(true, '.resizable("destroy") called on element');
-
-       $([]).resizable().resizable("destroy").remove();
-       ok(true, '.resizable("destroy") called on empty collection');
-
-       $('<div></div>').resizable().resizable("destroy").remove();
-       ok(true, '.resizable("destroy") called on disconnected DOMElement');
-
-       $('<div></div>').resizable().resizable("destroy").resizable("foo").remove();
-       ok(true, 'arbitrary method called after destroy');
-
-       var expected = $('<div></div>').resizable(),
-               actual = expected.resizable('destroy');
-       equal(actual, expected, 'destroy is chainable');
-});
-
-test("enable", function() {
-       var expected = $('<div></div>').resizable(),
-               actual = expected.resizable('enable');
-       equal(actual, expected, 'enable is chainable');
-       ok(false, "missing test - untested code is broken code.");
-});
-
-test("disable", function() {
-       var expected = $('<div></div>').resizable(),
-               actual = expected.resizable('disable');
-       equal(actual, expected, 'disable is chainable');
-       ok(false, "missing test - untested code is broken code.");
-});
 
 })(jQuery);