From 914d74c998445862e955fe69f239be4bac68de2e Mon Sep 17 00:00:00 2001 From: Dave Stein Date: Sun, 23 Dec 2012 12:50:05 -0500 Subject: [PATCH] Draggable Unit: Removed tests against undocumentated functionality --- tests/unit/draggable/draggable_options.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/tests/unit/draggable/draggable_options.js b/tests/unit/draggable/draggable_options.js index be5328436..63bdb819e 100644 --- a/tests/unit/draggable/draggable_options.js +++ b/tests/unit/draggable/draggable_options.js @@ -260,13 +260,13 @@ test("{ cursorAt: false}, default", function() { */ test( "{ cursorAt: left, top }", function() { - expect( 16 ); + expect( 12 ); var deltaX = -3, deltaY = -3, tests = { "{ left: -5, top: -5 }": { x: -5, y: -5, cursorAt : { left: -5, top: -5 } }, - "[ 10, 20 ]": { x: 10, y: 20, cursorAt : [ 10, 20 ] }, + // "[ 10, 20 ]": { x: 10, y: 20, cursorAt : [ 10, 20 ] }, "{ left: 20, top: 40 }": { x: 20, y: 40, cursorAt : { left: 20, top: 40 } }, "{ right: 10, bottom: 20 }": { x: 10, y: 20, cursorAt : { right: 10, bottom: 20 } } };