~hardware-certification/zope3/certify-staging-2.5

« back to all changes in this revision

Viewing changes to src/zope/securitypolicy/tests/test_role.py

  • Committer: Marc Tardif
  • Date: 2008-04-26 19:03:34 UTC
  • Revision ID: cr3@lime-20080426190334-u16xo4llz56vliqf
Initial import.

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2004 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
"""Doctests for 'permission' module.
 
15
 
 
16
$Id: test_role.py 80107 2007-09-26 14:58:39Z rogerineichen $
 
17
"""
 
18
import unittest
 
19
from zope.testing.doctestunit import DocTestSuite
 
20
 
 
21
 
 
22
def test_suite():
 
23
    return unittest.TestSuite((
 
24
        DocTestSuite('zope.securitypolicy.role'),
 
25
        ))
 
26
 
 
27
if __name__ == '__main__':
 
28
    unittest.main(defaultTest='test_suite')
 
29