From 44aabdb390890872f0724713130cc03493ad8644 Mon Sep 17 00:00:00 2001 From: Adam Shaw Date: Fri, 13 Jun 2014 13:00:48 -0700 Subject: [PATCH] automated test template file to help get a test started --- tests/automated/template.js.txt | 27 +++++++++++++++++++++++++++ 1 file changed, 27 insertions(+) create mode 100644 tests/automated/template.js.txt diff --git a/tests/automated/template.js.txt b/tests/automated/template.js.txt new file mode 100644 index 0000000..01ec3e0 --- /dev/null +++ b/tests/automated/template.js.txt @@ -0,0 +1,27 @@ +ddescribe('', function() { + + var options; + + beforeEach(function() { + //affix('#cal'); + $('body').append('
'); + options = { + defaultDate: '' + }; + }); + + afterEach(function() { + //$('#cal').fullCalendar('destroy'); + }); + + describe('', function() { + beforeEach(function() { + options.defaultView = ''; + }); + + iit('', function() { + $('#cal').fullCalendar(options); + }); + }); + +}); \ No newline at end of file