~landscape/zope3/ztk-1.1.3

« back to all changes in this revision

Viewing changes to src/zope/password/tests.py

  • Committer: Sidnei da Silva
  • Date: 2010-07-05 20:15:44 UTC
  • Revision ID: sidnei.da.silva@canonical.com-20100705201544-nl51oynbbclpyz2o
- Downgrade zope.password

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2009 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
"""Password Managers Tests
 
15
 
 
16
$Id: tests.py 97566 2009-03-06 12:23:42Z nadako $
 
17
"""
 
18
import unittest
 
19
from zope.testing import doctest
 
20
 
 
21
 
 
22
def test_suite():
 
23
    return unittest.TestSuite((
 
24
        doctest.DocTestSuite('zope.password.password'),
 
25
        doctest.DocTestSuite(
 
26
            'zope.password.testing',
 
27
            optionflags=doctest.ELLIPSIS),
 
28
        ))