~ubuntu-branches/ubuntu/wily/zope.app.security/wily

« back to all changes in this revision

Viewing changes to src/zope/app/security/tests/test_loginpassword.py

  • Committer: Bazaar Package Importer
  • Author(s): Gediminas Paulauskas
  • Date: 2010-12-02 19:34:05 UTC
  • Revision ID: james.westby@ubuntu.com-20101202193405-ssc1x1c1pznqdrnc
Tags: upstream-3.7.5
ImportĀ upstreamĀ versionĀ 3.7.5

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
##############################################################################
 
2
#
 
3
# Copyright (c) 2001, 2002 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 Login and Password
 
15
 
 
16
$Id: test_loginpassword.py 106799 2009-12-20 04:50:49Z fafhrd $
 
17
"""
 
18
import unittest
 
19
from zope.testing import doctest
 
20
 
 
21
def test_bbb_imports():
 
22
    """
 
23
    Let's check that permission vocabularies that were moved to
 
24
    zope.security are still importable from original place.
 
25
 
 
26
      >>> import zope.authentication.loginpassword as new
 
27
      >>> import zope.app.security.loginpassword as old
 
28
      >>> old.LoginPassword is new.LoginPassword
 
29
      True
 
30
 
 
31
    """
 
32
 
 
33
def test_suite():
 
34
    return unittest.TestSuite((
 
35
        doctest.DocTestSuite(),
 
36
        ))