summaryrefslogtreecommitdiffstats
path: root/js/tests/unit/service/LoadingSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/unit/service/LoadingSpec.js')
-rw-r--r--js/tests/unit/service/LoadingSpec.js24
1 files changed, 24 insertions, 0 deletions
diff --git a/js/tests/unit/service/LoadingSpec.js b/js/tests/unit/service/LoadingSpec.js
new file mode 100644
index 000000000..cae049c99
--- /dev/null
+++ b/js/tests/unit/service/LoadingSpec.js
@@ -0,0 +1,24 @@
+/**
+ * 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('Loading', function () {
+ 'use strict';
+
+ beforeEach(module('News'));
+
+ it('should be not load by default', inject(function (Loading) {
+ expect(Loading.isLoading()).toBe(false);
+ }));
+
+ it('should set loading', inject(function (Loading) {
+ Loading.setLoading(true);
+ expect(Loading.isLoading()).toBe(true);
+ }));
+
+}); \ No newline at end of file