~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/plugins/launchpad/test_lp_api.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-01-26 10:49:57 UTC
  • mfrom: (4987.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100126104957-dmtqnc0pckuruyla
(vila,
        jam) Implement TestCase.overrideAttr to simplify tests setUp/cleanup

Show diffs side-by-side

added added

removed removed

Lines of Context:
39
39
 
40
40
    def patch(self, obj, name, value):
41
41
        """Temporarily set the 'name' attribute of 'obj' to 'value'."""
42
 
        real_value = getattr(obj, name)
43
 
        setattr(obj, name, value)
44
 
        self.addCleanup(setattr, obj, name, real_value)
 
42
        self.overrideAttr(obj, name, value)
45
43
 
46
44
    def test_get_launchpadlib_version(self):
47
45
        # parse_launchpadlib_version returns a tuple of a version number of