~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_info.py

  • Committer: Aaron Bentley
  • Date: 2007-11-25 17:54:55 UTC
  • mto: This revision was merged to the branch mainline in revision 3026.
  • Revision ID: aaron.bentley@utoronto.ca-20071125175455-3zoctrg96t1hmt1s
Implement rich-root-pack format ( #164639)

Show diffs side-by-side

added added

removed removed

Lines of Context:
265
265
        out, err = self.run_bzr('info -v lightcheckout')
266
266
        self.assertEqualDiff(
267
267
"""Lightweight checkout (format: dirstate or dirstate-tags or \
268
 
knitpack-experimental or rich-root)
 
268
knitpack-experimental or rich-root or rich-root-pack)
269
269
Location:
270
270
  light checkout root: lightcheckout
271
271
   checkout of branch: standalone
444
444
        out, err = self.run_bzr('info lightcheckout --verbose')
445
445
        self.assertEqualDiff(
446
446
"""Lightweight checkout (format: dirstate or dirstate-tags or \
447
 
knitpack-experimental or rich-root)
 
447
knitpack-experimental or rich-root or rich-root-pack)
448
448
Location:
449
449
  light checkout root: lightcheckout
450
450
   checkout of branch: standalone
584
584
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
585
585
        self.assertEqualDiff(
586
586
"""Lightweight checkout (format: dirstate or dirstate-tags or \
587
 
knitpack-experimental or rich-root)
 
587
knitpack-experimental or rich-root or rich-root-pack)
588
588
Location:
589
589
  light checkout root: tree/lightcheckout
590
590
   checkout of branch: repo/branch
716
716
        out, err = self.run_bzr('info tree/lightcheckout --verbose')
717
717
        self.assertEqualDiff(
718
718
"""Lightweight checkout (format: dirstate or dirstate-tags or \
719
 
knitpack-experimental or rich-root)
 
719
knitpack-experimental or rich-root or rich-root-pack)
720
720
Location:
721
721
  light checkout root: tree/lightcheckout
722
722
   checkout of branch: repo/branch
1160
1160
            (False, False): 'Checkout',
1161
1161
            }[(shared_repo is not None, light_checkout)]
1162
1162
        format = {True: 'dirstate or dirstate-tags or knitpack-experimental'
1163
 
                        ' or rich-root',
 
1163
                        ' or rich-root or rich-root-pack',
1164
1164
                  False: 'dirstate'}[light_checkout]
1165
1165
        if repo_locked:
1166
1166
            repo_locked = lco_tree.branch.repository.get_physical_lock_status()