]> source.dussan.org Git - jquery-ui.git/commitdiff
tests - wrapped in closures so all.html will work
authorRichard Worth <rdworth@gmail.com>
Mon, 9 Jun 2008 05:59:18 +0000 (05:59 +0000)
committerRichard Worth <rdworth@gmail.com>
Mon, 9 Jun 2008 05:59:18 +0000 (05:59 +0000)
tests/accordion.js
tests/all.html
tests/dialog.js
tests/draggable.js
tests/resizable.js
tests/selectable.js
tests/slider.js

index c0e3edfc586b78ed19ba0dc08abcdbbe512f1fef..1fbd1e20c743ae7e8ace6e3ad90fa6bac08b5aae 100644 (file)
@@ -1,3 +1,8 @@
+/*
+ * accordion unit tests
+ */
+(function($) {
+
 module("accordion");
 
 jQuery.ui.accordion.defaults.animated = false;
@@ -75,4 +80,6 @@ test("activate, jQuery or DOM element", function() {
        state(ac, 1, 0, 0);
        ac.accordion("activate", $("#list1 a")[1]);
        state(ac, 0, 1, 0);
-});
\ No newline at end of file
+});
+
+})(jQuery);
index b83b30fe2f98a2b4cf69c13b4cde37547f8c0cc4..99e53db39858a7c3b41aa3cc007b51ffbca1f0a4 100644 (file)
        <h4>Run individual testsuites or doubleclick a test below</h4>
        <ul>
                <li><a href="accordion.html">Accordion</a></li>
+               <li><a href="dialog.html">Dialog</a></li>
+               <li><a href="draggable.html">Draggable</a></li>
+               <li><a href="resizable.html">Resizable</a></li>
+               <li><a href="selectable.html">Selectable</a></li>
                <li><a href="slider.html">Slider</a></li>
        </ul>
 
                </div>
 
                <div id="log"><div><strong>Log of the 2nd accordion</strong></div></div>
+
+       <div id="resizable1" style="background: green; width: 100px; height: 100px;">I'm a resizable.</div>
+       <img src="images/test.jpg" id="resizable2" style="width: 100px; height: 100px;"/>
+
+
+       <ul id="selectable1">
+               <li>Item 1</li>
+               <li>Item 2</li>
+               <li class="special">Item 3</li>
+               <li>Item 4</li>
+               <li>Item 5</li>
+       </ul>
+
 </div>
        </body>
 </html>
\ No newline at end of file
index c1c8ea54f150740900f9b48f76ecdeb3aa84468e..7520fe8b712e51feb61a100add0a118288e51c10 100644 (file)
@@ -1,10 +1,11 @@
 /*\r
  * dialog unit tests\r
  */\r
-\r
+(function($) {\r
 //\r
 // Dialog Test Helper Functions\r
 //\r
+\r
 var el,\r
        offsetBefore, offsetAfter,\r
        heightBefore, heightAfter,\r
@@ -307,3 +308,5 @@ test("close", function() {
 });\r
 \r
 module("dialog: Tickets");\r
+\r
+})(jQuery);\r
index d428a21ff4ed048725a2c618aef437c02bd8fe4a..2f5a079deba044616cdaa12b8bd6c1930ffa6ffb 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * draggable unit tests
  */
-
+(function($) {
 //
 // Draggable Test Helper Functions
 //
@@ -487,3 +487,5 @@ test("#2965 cursorAt with margin", function() {
        equals(actual.top, expected.top, "10px margin. top");
        
 });
+
+})(jQuery);
index 152691223f7b6b77f3513525cce85adf9120c6fd..2e7da9adc0009b35025d4e51e1277ef4a393923c 100644 (file)
@@ -1,6 +1,7 @@
 /*
  * resizable tests
  */
+(function($) {
 
 var drag = function(el, dx, dy, complete) {
        
@@ -398,3 +399,5 @@ test("ui-resizable-se { handles: 'all', grid: [0, 20] } wrapped", function() {
        equals( target.height(), 120, "compare height");
        
 });
+
+})(jQuery);
index 2c127b11f770ac7e25bc249f66452dc2c22f5c81..5060650d10c8596f3adf37868588f797d4c7ca5f 100644 (file)
@@ -1,7 +1,7 @@
 /*\r
  * selectable unit tests\r
  */\r
-\r
+(function($) {\r
 //\r
 // Selectable Test Helper Functions\r
 //\r
@@ -203,3 +203,5 @@ test("stop", function() {
 });\r
 \r
 module("selectable: Tickets");\r
+\r
+})(jQuery);\r
index 7b6d095a5a47d6dbdb214056b0edce504969512e..b13acc4a9b49f179f48fe120019a3f6955c15415 100644 (file)
@@ -1,3 +1,7 @@
+/*
+ * slider unit tests
+ */
+(function($) {
 
 var keyCodes = {
        leftArrow: 37,
@@ -107,4 +111,6 @@ test("handle creation", function() {
        var instance = $.data(slider[0], "slider")
        equals(instance.handle.length, 2);
        ok(instance.handle.jquery, "handle must be a jquery object")
-})
\ No newline at end of file
+})
+
+})(jQuery);