[Zope3-checkins] CVS: Zope3/src/zope/app/interface/tests -
test_vocabulary.py:1.1
Stephan Richter
srichter at cosmos.phy.tufts.edu
Sat Apr 24 19:17:37 EDT 2004
Update of /cvs-repository/Zope3/src/zope/app/interface/tests
In directory cvs.zope.org:/tmp/cvs-serv28909/src/zope/app/interface/tests
Added Files:
test_vocabulary.py
Log Message:
Vocabulary to provide the context's provided interfaces.
=== Added File Zope3/src/zope/app/interface/tests/test_vocabulary.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Object Interface Vocabulary Tests
$Id: test_vocabulary.py,v 1.1 2004/04/24 23:17:36 srichter Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
from zope.app.tests import setup
def test_suite():
return DocTestSuite('zope.app.interface.vocabulary',
setUp=setup.placelessSetUp,
tearDown=setup.placelessTearDown)
if __name__ == '__main__':
unittest.main(default='test_suite')
More information about the Zope3-Checkins
mailing list