Skip to content

Instantly share code, notes, and snippets.

@ignacy
Created December 25, 2010 11:09
Show Gist options
  • Save ignacy/754828 to your computer and use it in GitHub Desktop.
Save ignacy/754828 to your computer and use it in GitHub Desktop.
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