~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/canonical/auth/tests/test_passwordresets.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2005-04-04 20:07:21 UTC
  • mfrom: (unknown (missing))
  • Revision ID: Arch-1:rocketfuel@canonical.com%launchpad--devel--0--patch-1554
Purging canonical/auth/. ubuntulinux.org forgottenpassword's page now redirects to launchpad.
Patches applied:

 * guilherme.salgado@canonical.com/launchpad--devel--0--patch-247
   merge from rf

 * guilherme.salgado@canonical.com/launchpad--devel--0--patch-248
   Purging canonical/auth/. ubuntulinux.org forgottenpassword's page now redirects to launchpad.

 * guilherme.salgado@canonical.com/launchpad--devel--0--patch-249
   merge from rf

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright 2004 Canonical Ltd.  All rights reserved.
2
 
 
3
 
__metaclass__ = type
4
 
 
5
 
import unittest
6
 
from zope.testing.doctest import DocFileSuite, DocTestSuite
7
 
 
8
 
def test_suite():
9
 
    suite = unittest.TestSuite((
10
 
        DocFileSuite("zodb_password_resets.txt", globs = {}),
11
 
        DocTestSuite("canonical.auth.browser")
12
 
        ))
13
 
    return suite
14
 
 
15
 
if __name__ == '__main__':
16
 
    unittest.main(defaultTest = "test_suite")