summaryrefslogtreecommitdiffstats
path: root/js-old/tests/unit/filter/UnreadCountFormatterSpec.js
diff options
context:
space:
mode:
Diffstat (limited to 'js-old/tests/unit/filter/UnreadCountFormatterSpec.js')
-rw-r--r--js-old/tests/unit/filter/UnreadCountFormatterSpec.js27
1 files changed, 27 insertions, 0 deletions
diff --git a/js-old/tests/unit/filter/UnreadCountFormatterSpec.js b/js-old/tests/unit/filter/UnreadCountFormatterSpec.js
new file mode 100644
index 000000000..60f58431e
--- /dev/null
+++ b/js-old/tests/unit/filter/UnreadCountFormatterSpec.js
@@ -0,0 +1,27 @@
+/**
+ * Nextcloud - 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 2014
+ */
+describe('unreadCountFormatter', function () {
+ 'use strict';
+
+ var filter;
+
+ beforeEach(module('News'));
+
+ beforeEach(inject(function ($filter) {
+ filter = $filter('unreadCountFormatter');
+ }));
+
+ it('should format the unread count', function () {
+ expect(filter(999)).toBe(999);
+ expect(filter(1000)).toBe('999+');
+ });
+
+
+}); \ No newline at end of file