Skip to content

Commit

Permalink
Checking in test I forgot to add in 26976
Browse files Browse the repository at this point in the history
  • Loading branch information
Jim Fulton committed Aug 10, 2004
1 parent f521eaf commit fa6a8b0
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions tests/test_traversers.py
@@ -0,0 +1,28 @@
##############################################################################
#
# Copyright (c) 2004 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.
#
##############################################################################
"""XXX short summary goes here.
$Id$
"""
import unittest
from zope.testing.doctestunit import DocTestSuite

def test_suite():
return unittest.TestSuite((
DocTestSuite('zope.app.publication.traversers'),
))

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

0 comments on commit fa6a8b0

Please sign in to comment.