tests.py
2008-02-28 00:28python # -*- coding: utf-8; ...
#!/usr/bin/env python
# -*- coding: utf-8; -*-
__author__ = 'Gennady Kovalev, 2008'
__copyright__ = '''
Copyright (C) 2007 by Gennady Kovalev. All rights reserved.
Copyright (C) 2007 by BIGUR Company (http://www.bigur.ru/). All rights reserved.
See COPYING file that comes with this distribution.
'''
import unittest
from zope.testing.doctestunit import DocTestSuite
from zope.app.container.tests.test_icontainer import TestSampleContainer
from simplehuman import SimpleHumanContainer
class SimpleHumanContainerTest(TestSampleContainer):
def makeSimpleHumanContainerObject(self):
return SimpleHumanContainer()
def test_suite():
return unittest.TestSuite((
DocTestSuite('simplehuman.simplehuman')))
if __name__ == '__main__':
unittest.main(defaultTest='test_suite')



