tests for issue 2017

This commit is contained in:
Adam Shaw
2014-08-23 16:18:43 -07:00
parent 1e6dd460ba
commit ec20ef34b0
+54
View File
@@ -0,0 +1,54 @@
describe('eventDestroy', function() {
var options;
beforeEach(function() {
affix('#cal');
options = {
defaultDate: '2014-08-01'
};
});
function testSingleEvent(singleEventData, done) {
expect(singleEventData.id).toBeTruthy();
options.events = [ singleEventData ];
options.eventDestroy = function(event, element) {
expect(event.id).toBe(singleEventData.id);
done();
};
$('#cal').fullCalendar(options);
$('#cal').fullCalendar('removeEvents', singleEventData.id);
}
describe('when in month view', function() { // for issue 2017
beforeEach(function() {
options.defaultView = 'month';
});
it('gets called with removeEvents method', function(done) {
testSingleEvent({
id: 1,
title: 'event1',
date: '2014-08-02'
}, done);
});
});
describe('when in agendaWeek view', function() { // for issue 2017
beforeEach(function() {
options.defaultView = 'agendaWeek';
options.scrollTime = '00:00:00';
});
it('gets called with removeEvents method', function(done) {
testSingleEvent({
id: 1,
title: 'event1',
date: '2014-08-02T02:00:00'
}, done);
});
});
});