~ubuntu-branches/ubuntu/precise/zope.proxy/precise

« back to all changes in this revision

Viewing changes to src/zope/proxy/tests/test_decorator.py

  • Committer: Bazaar Package Importer
  • Author(s): Fabio Tranchitella
  • Date: 2009-06-18 17:20:52 UTC
  • Revision ID: james.westby@ubuntu.com-20090618172052-2vpxps4mfz0pw2e1
Tags: upstream-3.5.0
ImportĀ upstreamĀ versionĀ 3.5.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2003 Zope Corporation and Contributors.
 
4
# All Rights Reserved.
 
5
#
 
6
# This software is subject to the provisions of the Zope Public License,
 
7
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
 
8
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
 
9
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 
10
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
 
11
# FOR A PARTICULAR PURPOSE.
 
12
#
 
13
##############################################################################
 
14
"""Test Harness
 
15
 
 
16
$Id: test_decorator.py 70826 2006-10-20 03:41:16Z baijum $
 
17
"""
 
18
from zope.testing.doctestunit import DocTestSuite
 
19
 
 
20
 
 
21
def test_suite():
 
22
    suite = DocTestSuite()
 
23
    suite.addTest(DocTestSuite('zope.proxy.decorator'))
 
24
    return suite