[ Index ]

PHP Cross Reference of Drupal 6 (yi-drupal)

title

Body

[close]

/sites/all/libraries/jquery.ui/tests/unit/sortable/ -> sortable_options.js (source)

   1  /*

   2   * sortable_options.js

   3   */
   4  (function($) {
   5  
   6  module("sortable: options");
   7  
   8  test("{ appendTo: 'parent' }, default", function() {
   9      ok(false, "missing test - untested code is broken code.");
  10  });
  11  
  12  test("{ appendTo: Selector }", function() {
  13      ok(false, "missing test - untested code is broken code.");
  14  });
  15  
  16  test("{ axis: false }, default", function() {
  17      ok(false, "missing test - untested code is broken code.");
  18  });
  19  
  20  test("{ axis: 'x' }", function() {
  21      ok(false, "missing test - untested code is broken code.");
  22  });
  23  
  24  test("{ axis: 'y' }", function() {
  25      ok(false, "missing test - untested code is broken code.");
  26  });
  27  
  28  test("{ axis: ? }, unexpected", function() {
  29      ok(false, "missing test - untested code is broken code.");
  30  });
  31  
  32  test("{ cancel: ':input,button' }, default", function() {
  33      ok(false, "missing test - untested code is broken code.");
  34  });
  35  
  36  test("{ cancel: Selector }", function() {
  37      ok(false, "missing test - untested code is broken code.");
  38  });
  39  
  40  test("{ connectWith: false }, default", function() {
  41      ok(false, "missing test - untested code is broken code.");
  42  });
  43  
  44  test("{ connectWith: Selector }", function() {
  45      ok(false, "missing test - untested code is broken code.");
  46  });
  47  
  48  test("{ containment: false }, default", function() {
  49      ok(false, "missing test - untested code is broken code.");
  50  });
  51  
  52  test("{ containment: Element }", function() {
  53      ok(false, "missing test - untested code is broken code.");
  54  });
  55  
  56  test("{ containment: 'document' }", function() {
  57      ok(false, "missing test - untested code is broken code.");
  58  });
  59  
  60  test("{ containment: 'parent' }", function() {
  61      ok(false, "missing test - untested code is broken code.");
  62  });
  63  
  64  test("{ containment: 'window' }", function() {
  65      ok(false, "missing test - untested code is broken code.");
  66  });
  67  
  68  test("{ containment: Selector }", function() {
  69      ok(false, "missing test - untested code is broken code.");
  70  });
  71  
  72  test("{ cursor: 'auto' }, default", function() {
  73      ok(false, "missing test - untested code is broken code.");
  74  });
  75  
  76  test("{ cursor: 'move' }", function() {
  77      ok(false, "missing test - untested code is broken code.");
  78  });
  79  
  80  test("{ cursorAt: false }, default", function() {
  81      ok(false, "missing test - untested code is broken code.");
  82  });
  83  
  84  test("{ cursorAt: true }", function() {
  85      ok(false, "missing test - untested code is broken code.");
  86  });
  87  
  88  test("{ delay: 0 }, default", function() {
  89      ok(false, "missing test - untested code is broken code.");
  90  });
  91  
  92  test("{ delay: 100 }", function() {
  93      ok(false, "missing test - untested code is broken code.");
  94  });
  95  
  96  test("{ distance: 1 }, default", function() {
  97      ok(false, "missing test - untested code is broken code.");
  98  });
  99  
 100  test("{ distance: 10 }", function() {
 101      ok(false, "missing test - untested code is broken code.");
 102  });
 103  
 104  test("{ dropOnEmpty: true }, default", function() {
 105      ok(false, "missing test - untested code is broken code.");
 106  });
 107  
 108  test("{ dropOnEmpty: false }", function() {
 109      ok(false, "missing test - untested code is broken code.");
 110  });
 111  
 112  test("{ forcePlaceholderSize: false }, default", function() {
 113      ok(false, "missing test - untested code is broken code.");
 114  });
 115  
 116  test("{ forcePlaceholderSize: true }", function() {
 117      ok(false, "missing test - untested code is broken code.");
 118  });
 119  
 120  test("{ forceHelperSize: false }, default", function() {
 121      ok(false, "missing test - untested code is broken code.");
 122  });
 123  
 124  test("{ forceHelperSize: true }", function() {
 125      ok(false, "missing test - untested code is broken code.");
 126  });
 127  
 128  test("{ grid: false }, default", function() {
 129      ok(false, "missing test - untested code is broken code.");
 130  });
 131  
 132  test("{ grid: [17, 3] }", function() {
 133      ok(false, "missing test - untested code is broken code.");
 134  });
 135  
 136  test("{ grid: [3, 7] }", function() {
 137      ok(false, "missing test - untested code is broken code.");
 138  });
 139  
 140  test("{ handle: false }, default", function() {
 141      ok(false, "missing test - untested code is broken code.");
 142  });
 143  
 144  test("{ handle: Element }", function() {
 145      ok(false, "missing test - untested code is broken code.");
 146  });
 147  
 148  test("{ handle: Selector }", function() {
 149      ok(false, "missing test - untested code is broken code.");
 150  });
 151  
 152  test("{ helper: 'original' }, default", function() {
 153      ok(false, "missing test - untested code is broken code.");
 154  });
 155  
 156  test("{ helper: Function }", function() {
 157      ok(false, "missing test - untested code is broken code.");
 158  });
 159  
 160  test("{ items: '> *' }, default", function() {
 161      ok(false, "missing test - untested code is broken code.");
 162  });
 163  
 164  test("{ items: Selector }", function() {
 165      ok(false, "missing test - untested code is broken code.");
 166  });
 167  
 168  test("{ opacity: false }, default", function() {
 169      ok(false, "missing test - untested code is broken code.");
 170  });
 171  
 172  test("{ opacity: .37 }", function() {
 173      ok(false, "missing test - untested code is broken code.");
 174  });
 175  
 176  test("{ opacity: 1 }", function() {
 177      ok(false, "missing test - untested code is broken code.");
 178  });
 179  
 180  test("{ placeholder: false }, default", function() {
 181      ok(false, "missing test - untested code is broken code.");
 182  });
 183  
 184  test("{ placeholder: String }", function() {
 185      ok(false, "missing test - untested code is broken code.");
 186  });
 187  
 188  test("{ revert: false }, default", function() {
 189      ok(false, "missing test - untested code is broken code.");
 190  });
 191  
 192  test("{ revert: true }", function() {
 193      ok(false, "missing test - untested code is broken code.");
 194  });
 195  
 196  test("{ scroll: true }, default", function() {
 197      ok(false, "missing test - untested code is broken code.");
 198  });
 199  
 200  test("{ scroll: false }", function() {
 201      ok(false, "missing test - untested code is broken code.");
 202  });
 203  
 204  test("{ scrollSensitivity: 20 }, default", function() {
 205      ok(false, "missing test - untested code is broken code.");
 206  });
 207  
 208  test("{ scrollSensitivity: 2 }", function() {
 209      ok(false, "missing test - untested code is broken code.");
 210  });
 211  
 212  test("{ scrollSensitivity: 200 }", function() {
 213      ok(false, "missing test - untested code is broken code.");
 214  });
 215  
 216  test("{ scrollSpeed: 20 }, default", function() {
 217      ok(false, "missing test - untested code is broken code.");
 218  });
 219  
 220  test("{ scrollSpeed: 2 }", function() {
 221      ok(false, "missing test - untested code is broken code.");
 222  });
 223  
 224  test("{ scrollSpeed: 200 }", function() {
 225      ok(false, "missing test - untested code is broken code.");
 226  });
 227  
 228  test("{ scope: 'default' }, default", function() {
 229      ok(false, "missing test - untested code is broken code.");
 230  });
 231  
 232  test("{ scope: ??? }, unexpected", function() {
 233      ok(false, "missing test - untested code is broken code.");
 234  });
 235  
 236  test("{ tolerance: 'intersect' }, default", function() {
 237      ok(false, "missing test - untested code is broken code.");
 238  });
 239  
 240  test("{ tolerance: 'pointer' }", function() {
 241      ok(false, "missing test - untested code is broken code.");
 242  });
 243  
 244  test("{ zIndex: 1000 }, default", function() {
 245      ok(false, "missing test - untested code is broken code.");
 246  });
 247  
 248  test("{ zIndex: 1 }", function() {
 249      ok(false, "missing test - untested code is broken code.");
 250  });
 251  
 252  test("{ zIndex: false }", function() {
 253      ok(false, "missing test - untested code is broken code.");
 254  });
 255  
 256  })(jQuery);


Generated: Mon Jul 9 18:01:44 2012 Cross-referenced by PHPXref 0.7