~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/code/model/tests/test_branchtarget.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 zope.security.proxy import removeSecurityProxy
11
9
 
12
10
from canonical.launchpad.webapp import canonical_url
581
579
    def test_product_branch(self):
582
580
        branch = self.factory.makeProductBranch()
583
581
        self.assertEqual(branch.target, IPrimaryContext(branch))
584
 
 
585
 
 
586
 
def test_suite():
587
 
    return unittest.TestLoader().loadTestsFromName(__name__)