~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/per_branch/test_create_checkout.py

  • Committer: Jelmer Vernooij
  • Date: 2011-05-10 07:46:15 UTC
  • mfrom: (5844 +trunk)
  • mto: This revision was merged to the branch mainline in revision 5845.
  • Revision ID: jelmer@samba.org-20110510074615-eptod049ndjxc4i7
Merge bzr.dev.

Show diffs side-by-side

added added

removed removed

Lines of Context:
46
46
 
47
47
        tree2 = tree1.branch.create_checkout('checkout', revision_id='rev-1')
48
48
        self.assertEqual('rev-1', tree2.last_revision())
49
 
        self.failUnlessExists('checkout/a')
50
 
        self.failIfExists('checkout/b')
 
49
        self.assertPathExists('checkout/a')
 
50
        self.assertPathDoesNotExist('checkout/b')
51
51
 
52
52
    def test_create_lightweight_checkout(self):
53
53
        """We should be able to make a lightweight checkout."""