moved index package as module to cybertools.util
git-svn-id: svn://svn.cy55.de/Zope3/src/cybertools/trunk@2512 fd906abe-77d9-0310-91a1-e0d9ade77398
This commit is contained in:
parent
c998205e18
commit
aa0fe50cfd
4 changed files with 0 additions and 33 deletions
|
@ -1,3 +0,0 @@
|
|||
"""
|
||||
$Id$
|
||||
"""
|
|
@ -1,30 +0,0 @@
|
|||
#! /usr/bin/python
|
||||
|
||||
"""
|
||||
Tests for the 'cybertools.index' package.
|
||||
|
||||
$Id$
|
||||
"""
|
||||
|
||||
import unittest, doctest
|
||||
from zope.testing.doctestunit import DocFileSuite
|
||||
|
||||
from cybertools.index import multikey
|
||||
|
||||
|
||||
class Test(unittest.TestCase):
|
||||
"Basic tests for the index package."
|
||||
|
||||
def testBasicStuff(self):
|
||||
pass
|
||||
|
||||
|
||||
def test_suite():
|
||||
flags = doctest.NORMALIZE_WHITESPACE | doctest.ELLIPSIS
|
||||
return unittest.TestSuite((
|
||||
DocFileSuite('README.txt', optionflags=flags),
|
||||
unittest.makeSuite(Test),
|
||||
))
|
||||
|
||||
if __name__ == '__main__':
|
||||
unittest.main(defaultTest='test_suite')
|
Loading…
Add table
Reference in a new issue