From 077b852048813830e67ae376d836c862977c8f3d Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Sun, 25 May 2014 10:23:23 -0700 Subject: [PATCH] automated tests for `now` --- tests/automated/now.js | 59 ++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 59 insertions(+) create mode 100644 tests/automated/now.js diff --git a/tests/automated/now.js b/tests/automated/now.js new file mode 100644 index 0000000..df998c3 --- /dev/null +++ b/tests/automated/now.js @@ -0,0 +1,59 @@ +describe('now', function() { + + var options; + + beforeEach(function() { + affix('#cal'); + options = { + defaultDate: '2014-05-1' + }; + }); + + describe('when month view', function() { + beforeEach(function() { + options.defaultView = 'month'; + }); + it('changes the highlighted day when customized', function() { + options.now = '2014-05-06'; + $('#cal').fullCalendar(options); + var todayCell = $('#cal td.fc-today'); + var todayDate = todayCell.data('date'); + expect(todayDate).toEqual('2014-05-06'); + }); + }); + + describe('when agendaWeek view', function() { + beforeEach(function() { + options.defaultView = 'agendaWeek'; + }); + it('changes the highlighted day when customized', function() { + options.now = '2014-04-29T12:00:00'; + $('#cal').fullCalendar(options); + var todayCell = $('#cal td.fc-today'); + expect(todayCell).toHaveClass('fc-col2'); // no date metadata, but we know which column # + }); + }); + + it('accepts a function that returns a moment', function() { + options.defaultView = 'month'; + options.now = function() { + return moment.utc('2014-05-01'); + }; + $('#cal').fullCalendar(options); + var todayCell = $('#cal td.fc-today'); + var todayDate = todayCell.data('date'); + expect(todayDate).toEqual('2014-05-01'); + }); + + it('accepts a function that returns a moment-ish string', function() { + options.defaultView = 'month'; + options.now = function() { + return '2014-05-01'; + }; + $('#cal').fullCalendar(options); + var todayCell = $('#cal td.fc-today'); + var todayDate = todayCell.data('date'); + expect(todayDate).toEqual('2014-05-01'); + }); + +}); \ No newline at end of file