Commit 8e6e7e2d authored by Romain Courteaud's avatar Romain Courteaud

XXX wip: check full text parser

parent e734eaed
......@@ -17,8 +17,8 @@
* See COPYING file for full licensing terms.
* See https://www.nexedi.com/licensing for rationale and options.
*/
/*global jiodate*/
(function (jIO, jiodate) {
/*global jiodate, SimpleQuery*/
(function (jIO, jiodate, SimpleQuery) {
"use strict";
var test = QUnit.test,
stop = QUnit.stop,
......@@ -460,9 +460,13 @@
{"identifier": "a", "value": "test post", "time": "2016"},
{"identifier": "b", "value": "test post 1", "time": "2017"},
{"identifier": "c", "value": "test post 2016", "time": "2017"}
];
], lala;
stop();
expect(2);
expect(3);
lala = jIO.QueryFactory.create('test post');
ok(lala instanceof SimpleQuery, lala);
/*global console */
console.log(lala);
jIO.QueryFactory.create('test post').exec(doc_list).
then(function (doc_list) {
deepEqual(doc_list, [
......@@ -667,4 +671,4 @@
}).always(start);
});
}(jIO, jiodate));
}(jIO, jiodate, SimpleQuery));
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment