summaryrefslogtreecommitdiffstats
path: root/js/tests/unit/controller/AllItemsControllerSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/controller/AllItemsControllerSpec.js')
-rw-r--r--js/tests/unit/controller/AllItemsControllerSpec.js26
1 files changed, 26 insertions, 0 deletions
diff --git a/js/tests/unit/controller/AllItemsControllerSpec.js b/js/tests/unit/controller/AllItemsControllerSpec.js
new file mode 100644
index 000000000..63cf55536
--- /dev/null
+++ b/js/tests/unit/controller/AllItemsControllerSpec.js
@@ -0,0 +1,26 @@
+/**
+ * ownCloud - News
+ *
+ * This file is licensed under the Affero General Public License version 3 or
+ * later. See the COPYING file.
+ *
+ * @author Bernhard Posselt <dev@bernhard-posselt.com>
+ * @copyright Bernhard Posselt 2012, 2014
+ */
+describe('AllItemsController', function () {
+ 'use strict';
+
+ var controller;
+
+ beforeEach(module('News'));
+
+ beforeEach(inject(function ($controller) {
+ controller = $controller;
+ }));
+
+
+ it('should ', function () {
+ expect(controller).toBeDefined();
+ });
+
+}); \ No newline at end of file