Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F90415040
bibindex_engine_stemmer_tests.py.wml
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Mute Notifications
Award Token
Subscribers
None
File Metadata
Details
File Info
Storage
Attached
Created
Fri, Nov 1, 11:39
Size
1 KB
Mime Type
text/x-python
Expires
Sun, Nov 3, 11:39 (1 d, 23 h)
Engine
blob
Format
Raw Data
Handle
22072322
Attached To
R3600 invenio-infoscience
bibindex_engine_stemmer_tests.py.wml
View Options
## $Id$
## CDSware Search Engine in mod_python.
## This file is part of the CERN Document Server Software (CDSware).
## Copyright (C) 2002, 2003, 2004, 2005 CERN.
##
## The CDSware is free software; you can redistribute it and/or
## modify it under the terms of the GNU General Public License as
## published by the Free Software Foundation; either version 2 of the
## License, or (at your option) any later version.
##
## The CDSware 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
## General Public License for more details.
##
## You should have received a copy of the GNU General Public License
## along with CDSware; if not, write to the Free Software Foundation, Inc.,
## 59 Temple Place, Suite 330, Boston, MA 02111-1307, USA.
<protect># -*- coding: utf-8 -*-</protect>
"""Unit tests for the indexing engine."""
__lastupdated__ = """<: print `date +"%d %b %Y %H:%M:%S %Z"`; :>"""
<protect> ## okay, rest of the Python code goes below #######
__version__ = "$Id$"
import bibindex_engine_stemmer
import unittest
class TestStemmer(unittest.TestCase):
"""Test stemming, if available."""
def test_stemmer_none(self):
"""bibindex engine - no stemmer"""
self.assertEqual("information",
bibindex_engine_stemmer.stem("information", None))
def test_stemmer_english(self):
"""bibindex engine - English stemmer"""
self.assertEqual("inform",
bibindex_engine_stemmer.stem("information", "en"))
def create_test_suite():
"""Return test suite for the indexing engine."""
return unittest.TestSuite((unittest.makeSuite(TestStemmer,'test'),))
if __name__ == "__main__":
unittest.TextTestRunner(verbosity=2).run(create_test_suite())
Event Timeline
Log In to Comment