Skip to content
This repository has been archived by the owner on Jan 21, 2021. It is now read-only.

Commit

Permalink
Deactivted all BBB to ensure that we use only the latest code in zope…
Browse files Browse the repository at this point in the history
….app

Made almost all tests pass again, except the few that heavily depended on
the old way of doing things: apidoc, module, presentation
  • Loading branch information
strichter committed Jan 9, 2005
0 parents commit 6aa947f
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/test_vocabulary.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.1 (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$
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
from zope.app.testing import setup

def test_suite():
return DocTestSuite('zope.app.interface.vocabulary',
setUp=setup.placelessSetUp,
tearDown=setup.placelessTearDown)

if __name__ == '__main__':
unittest.main(defaultTest='test_suite')

0 comments on commit 6aa947f

Please sign in to comment.