Ver código fonte

automated test template file to help get a test started

Adam Shaw 11 anos atrás
pai
commit
44aabdb390
1 arquivos alterados com 27 adições e 0 exclusões
  1. 27 0
      tests/automated/template.js.txt

+ 27 - 0
tests/automated/template.js.txt

@@ -0,0 +1,27 @@
+ddescribe('', function() {
+
+	var options;
+
+	beforeEach(function() {
+		//affix('#cal');
+		$('body').append('<div id="cal"></div>');
+		options = {
+			defaultDate: ''
+		};
+	});
+
+	afterEach(function() {
+		//$('#cal').fullCalendar('destroy');
+	});
+
+	describe('', function() {
+		beforeEach(function() {
+			options.defaultView = '';
+		});
+
+		iit('', function() {
+			$('#cal').fullCalendar(options);
+		});
+	});
+
+});