From 3ce894af1e72c9488b8cb3340fd61656122f7d50 Mon Sep 17 00:00:00 2001 From: Bernhard Posselt Date: Thu, 15 May 2014 03:00:53 +0200 Subject: use markdown, refactor js --- js/tests/services/queries/lessthanSpec.coffee | 80 --------------------------- 1 file changed, 80 deletions(-) delete mode 100644 js/tests/services/queries/lessthanSpec.coffee (limited to 'js/tests/services/queries/lessthanSpec.coffee') diff --git a/js/tests/services/queries/lessthanSpec.coffee b/js/tests/services/queries/lessthanSpec.coffee deleted file mode 100644 index 4b0a7f494..000000000 --- a/js/tests/services/queries/lessthanSpec.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 . - -### - -describe '_LessThanQuery', -> - - - beforeEach module 'News' - - beforeEach inject (_LessThanQuery, _Model, _Query) => - @query = _LessThanQuery - @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('lessthan_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[2]) - - - it 'should return an empty list if no element is matched', => - query = new @query('id', 2) - - expect(query.exec(@data).length).toBe(0) - - - it 'should return list with multiple elements if an element is matched', => - query = new @query('id', 4) - - expect(query.exec(@data)).toContain(@data[0]) - expect(query.exec(@data)).toContain(@data[2]) \ No newline at end of file -- cgit v1.2.3