~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/registry/browser/tests/test_gpgkey.py

  • Committer: Colin Watson
  • Date: 2011-08-19 00:25:11 UTC
  • mfrom: (7675.1045.728 db-devel)
  • mto: This revision was merged to the branch mainline in revision 13909.
  • Revision ID: cjwatson@canonical.com-20110819002511-0x8hrqs1ckiqk53g
merge db-devel

Show diffs side-by-side

added added

removed removed

Lines of Context:
5
5
 
6
6
__metaclass__ = type
7
7
 
8
 
import unittest
9
 
 
10
8
from canonical.launchpad.webapp import canonical_url
11
9
from canonical.testing.layers import DatabaseFunctionalLayer
12
10
from lp.testing import TestCaseWithFactory
24
22
            '%s/+gpg-keys/%s' % (
25
23
                canonical_url(person, rootsite='api'), gpgkey.keyid),
26
24
            canonical_url(gpgkey))
27
 
 
28
 
 
29
 
def test_suite():
30
 
    return unittest.TestLoader().loadTestsFromName(__name__)