Created
December 25, 2010 11:09
-
-
Save ignacy/754828 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
test("booking gets proper starting coordinates at the begining", function() { | |
expect(2); | |
var event = jQuery.Event("mousedown.calendar"); | |
event.pageX = 100; | |
event.pageY = 200; | |
jQuery(".weekday > .event_box").first().trigger(event); | |
equals(booking.startX, 100, "startX"); | |
equals(booking.startY, 200, "startY"); | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment