summaryrefslogtreecommitdiff
path: root/src/mongo/db/fts/stop_words_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/fts/stop_words_test.cpp')
-rw-r--r--src/mongo/db/fts/stop_words_test.cpp32
1 files changed, 32 insertions, 0 deletions
diff --git a/src/mongo/db/fts/stop_words_test.cpp b/src/mongo/db/fts/stop_words_test.cpp
new file mode 100644
index 00000000000..8d70600ce8e
--- /dev/null
+++ b/src/mongo/db/fts/stop_words_test.cpp
@@ -0,0 +1,32 @@
+// stop_words_test.cpp
+
+/**
+* Copyright (C) 2012 10gen Inc.
+*
+* This program is free software: you can redistribute it and/or modify
+* it under the terms of the GNU Affero General Public License, version 3,
+* as published by the Free Software Foundation.
+*
+* This program 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 program. If not, see <http://www.gnu.org/licenses/>.
+*/
+
+#include "mongo/db/fts/stop_words.h"
+#include "mongo/unittest/unittest.h"
+
+namespace mongo {
+ namespace fts {
+
+ TEST( English, Basic1 ) {
+ const StopWords* english = StopWords::getStopWords( "english" );
+ ASSERT( english->isStopWord( "the" ) );
+ ASSERT( !english->isStopWord( "computer" ) );
+ }
+
+ }
+}