Files
mongo/jstests/core/fts_enabled.js
Randolph Tan 5595b94560 SERVER-12127 migrate js tests to jscore suite when not related to writes
Moved test jstest/[a-i].js -> jstests/core/ and made changes to comply with write command api
2014-02-28 16:26:33 -05:00

6 lines
306 B
JavaScript

// Test that the textSearchEnabled server parameter works correctly (now deprecated).
// Value true is accepted, value false is rejected.
assert.commandWorked(db.adminCommand({setParameter: 1, textSearchEnabled: true}));
assert.commandFailed(db.adminCommand({setParameter: 1, textSearchEnabled: false}));