Commit 055c785b authored by Hanno Schlichting's avatar Hanno Schlichting

More code fossils

parent bbc95d18
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""Date index. """Date index.
$Id$
""" """
import time import time
......
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""DateIndex unit tests. """DateIndex unit tests.
$Id$
""" """
import unittest import unittest
...@@ -282,6 +280,3 @@ def test_suite(): ...@@ -282,6 +280,3 @@ def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest( unittest.makeSuite( DI_Tests ) ) suite.addTest( unittest.makeSuite( DI_Tests ) )
return suite return suite
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""Date range index. """Date range index.
$Id$
""" """
import os import os
......
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""DateRangeIndex unit tests. """DateRangeIndex unit tests.
$Id$
""" """
import unittest import unittest
...@@ -218,6 +216,3 @@ def test_suite(): ...@@ -218,6 +216,3 @@ def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest( unittest.makeSuite( DRI_Tests ) ) suite.addTest( unittest.makeSuite( DRI_Tests ) )
return suite return suite
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""Simple column indices. """Simple column indices.
$Id$
""" """
from App.special_dtml import DTMLFile from App.special_dtml import DTMLFile
......
...@@ -11,12 +11,9 @@ ...@@ -11,12 +11,9 @@
# #
############################################################################## ##############################################################################
"""FieldIndex unit tests. """FieldIndex unit tests.
$Id$
""" """
import unittest import unittest
import Testing
import Zope2 import Zope2
Zope2.startup() Zope2.startup()
...@@ -227,6 +224,3 @@ def test_suite(): ...@@ -227,6 +224,3 @@ def test_suite():
return unittest.TestSuite(( return unittest.TestSuite((
unittest.makeSuite(FieldIndexTests), unittest.makeSuite(FieldIndexTests),
)) ))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""Keyword index. """Keyword index.
$Id$
""" """
from logging import getLogger from logging import getLogger
......
...@@ -11,12 +11,9 @@ ...@@ -11,12 +11,9 @@
# #
############################################################################## ##############################################################################
"""KeywordIndex unit tests. """KeywordIndex unit tests.
$Id$
""" """
import unittest import unittest
import Testing
import Zope2 import Zope2
Zope2.startup() Zope2.startup()
...@@ -273,6 +270,3 @@ def test_suite(): ...@@ -273,6 +270,3 @@ def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest( unittest.makeSuite( TestKeywordIndex ) ) suite.addTest( unittest.makeSuite( TestKeywordIndex ) )
return suite return suite
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
...@@ -11,9 +11,8 @@ ...@@ -11,9 +11,8 @@
# #
############################################################################## ##############################################################################
"""Filtered set. """Filtered set.
$Id$
""" """
from logging import getLogger from logging import getLogger
import sys import sys
......
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""Topic index. """Topic index.
$Id$
""" """
from logging import getLogger from logging import getLogger
......
...@@ -11,12 +11,9 @@ ...@@ -11,12 +11,9 @@
# #
############################################################################## ##############################################################################
"""TopicIndex unit tests. """TopicIndex unit tests.
$Id$
""" """
import unittest import unittest
import Testing
import Zope2 import Zope2
Zope2.startup() Zope2.startup()
...@@ -97,6 +94,3 @@ def test_suite(): ...@@ -97,6 +94,3 @@ def test_suite():
return unittest.TestSuite(( return unittest.TestSuite((
unittest.makeSuite(TestTopicIndex), unittest.makeSuite(TestTopicIndex),
)) ))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
...@@ -11,9 +11,8 @@ ...@@ -11,9 +11,8 @@
# #
############################################################################## ##############################################################################
"""Base for bi-directional indexes. """Base for bi-directional indexes.
$Id$
""" """
from cgi import escape from cgi import escape
from logging import getLogger from logging import getLogger
import sys import sys
......
...@@ -11,9 +11,8 @@ ...@@ -11,9 +11,8 @@
# #
############################################################################# #############################################################################
""" Tests for common UnIndex features. """ Tests for common UnIndex features.
$Id$
""" """
import unittest import unittest
class UnIndexTests(unittest.TestCase): class UnIndexTests(unittest.TestCase):
...@@ -78,6 +77,3 @@ def test_suite(): ...@@ -78,6 +77,3 @@ def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(UnIndexTests)) suite.addTest(unittest.makeSuite(UnIndexTests))
return suite return suite
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
...@@ -11,8 +11,6 @@ ...@@ -11,8 +11,6 @@
# #
############################################################################## ##############################################################################
"""Unit tests for util module. """Unit tests for util module.
$Id$
""" """
import unittest import unittest
...@@ -60,6 +58,3 @@ def test_suite(): ...@@ -60,6 +58,3 @@ def test_suite():
suite = unittest.TestSuite() suite = unittest.TestSuite()
suite.addTest(unittest.makeSuite(parseIndexRequestTests)) suite.addTest(unittest.makeSuite(parseIndexRequestTests))
return suite return suite
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment