Page Menu
Home
c4science
Search
Configure Global Search
Log In
Files
F91541514
bibrank_citation_indexer_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
Tue, Nov 12, 01:32
Size
1 KB
Mime Type
text/x-python
Expires
Thu, Nov 14, 01:32 (2 d)
Engine
blob
Format
Raw Data
Handle
22280784
Attached To
R3600 invenio-infoscience
bibrank_citation_indexer_tests.py.wml
View Options
## $Id$
## This file is part of the CERN Document Server Software (CDSware).
## Copyright (C) 2002 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 citation indexer."""
__lastupdated__ = """<: print `date +"%d %b %Y %H:%M:%S %Z"`; :>"""
<protect> ## okay, rest of the Python code goes below #######
__version__ = "$Id$"
import unittest
from bibrank_citation_indexer import last_updated_result
class TestCitationIndexer(unittest.TestCase):
def setUp(self):
self.rank_method_code = 'cit'
self.updated_recid_list = [339705, 339704, 339708]
def test_last_updated_result(self):
"""bibrank citation indexer - last updated result"""
self.assert_(last_updated_result(self.rank_method_code, self.updated_recid_list))
def create_test_suite():
"""Return test suite for the bibrank citation indexer."""
return unittest.TestSuite((unittest.makeSuite(TestCitationIndexer, 'test'),))
if __name__ == "__main__":
unittest.TextTestRunner(verbosity=2).run(create_test_suite())
Event Timeline
Log In to Comment