summaryrefslogtreecommitdiffstats
path: root/js/tests/services/queries/biggerthanSpec.coffee
diff options
context:
space:
mode:
Diffstat (limited to 'js/tests/services/queries/biggerthanSpec.coffee')
-rw-r--r--js/tests/services/queries/biggerthanSpec.coffee80
1 files changed, 0 insertions, 80 deletions
diff --git a/js/tests/services/queries/biggerthanSpec.coffee b/js/tests/services/queries/biggerthanSpec.coffee
deleted file mode 100644
index 2b912184a..000000000
--- a/js/tests/services/queries/biggerthanSpec.coffee
+++ /dev/null
@@ -1,80 +0,0 @@
-###
-
-ownCloud - News
-
-@author Bernhard Posselt
-@copyright 2012 Bernhard Posselt dev@bernhard-posselt.com
-
-This library is free software; you can redistribute it and/or
-modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
-License as published by the Free Software Foundation; either
-version 3 of the License, or any later version.
-
-This library is distributed in the hope that it will be useful,
-but WITHOUT ANY WARRANTY; without even the implied warranty of
-MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-GNU AFFERO GENERAL PUBLIC LICENSE for more details.
-
-You should have received a copy of the GNU Affero General Public
-License along with this library. If not, see <http://www.gnu.org/licenses/>.
-
-###
-
-describe '_BiggerThanQuery', ->
-
-
- beforeEach module 'News'
-
- beforeEach inject (_BiggerThanQuery, _Model, _Query) =>
- @query = _BiggerThanQuery
- @q = _Query
- @model = _Model
- data1 =
- id: 3
- name: 'donovan'
-
- data2 =
- id: 5
- name: 'donovan'
-
- data3 =
- id: 2
- name: 'jack'
-
- @data = [
- data1
- data2
- data3
- ]
-
-
- it 'should be a _ModelFilter subclass', =>
- expect(new @query('id', 3) instanceof @q).toBe(true)
-
-
- it 'should have a correct hash', =>
- expect(new @query('id', 3).hashCode()).toBe('biggerthan_id_3')
-
-
- it 'should return an empty list on empty list', =>
- query = new @query('id', 3)
- expect(query.exec([]).length).toBe(0)
-
-
- it 'should query on one', =>
- query = new @query('id', 3)
-
- expect(query.exec(@data)).toContain(@data[1])
-
-
- it 'should return an empty list if no element is matched', =>
- query = new @query('id', 5)
-
- expect(query.exec(@data).length).toBe(0)
-
-
- it 'should return list with multiple elements if an element is matched', =>
- query = new @query('id', 2)
-
- expect(query.exec(@data)).toContain(@data[0])
- expect(query.exec(@data)).toContain(@data[1]) \ No newline at end of file