Browse Source

remove exact_match script

pull/154/head
Peter Johnson 9 years ago
parent
commit
0cf282767a
  1. 13
      query/sort.js
  2. 10
      test/unit/query/search.js
  3. 18
      test/unit/query/sort.js

13
query/sort.js

@ -51,18 +51,5 @@ module.exports = function( params ){
}
];
if( isObject( params ) && params.hasOwnProperty( 'input' ) ){
scriptsConfig.push({
'_script': {
'params': {
'input': params.input
},
'file': 'exact_match',
'type': 'number',
'order': 'desc'
}
});
}
return scriptsConfig;
};

10
test/unit/query/search.js

@ -58,16 +58,6 @@ var sort = [
'type': 'number',
'order': 'desc'
}
},
{
'_script': {
'params': {
'input': 'test'
},
'file': 'exact_match',
'type': 'number',
'order': 'desc'
}
}
];

18
test/unit/query/sort.js

@ -69,24 +69,6 @@ module.exports.tests.query = function(test, common) {
});
};
module.exports.tests.queryWithInput = function ( test, common ){
test( 'Valid sort query component when input is present.', function ( t ){
var expectedWithInput = expected.slice();
expectedWithInput.push({
_script: {
params: {
input: 'foobar'
},
file: 'exact_match',
type: 'number',
order: 'desc'
}
});
t.deepEqual(generate({ input: 'foobar' }), expectedWithInput, 'valid sort part of the query');
t.end();
});
};
module.exports.all = function (tape, common) {
function test(name, testFunction) {

Loading…
Cancel
Save