~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_bundle.py

  • Committer: Jelmer Vernooij
  • Date: 2012-01-24 01:56:17 UTC
  • mto: This revision was merged to the branch mainline in revision 6464.
  • Revision ID: jelmer@samba.org-20120124015617-b56805ockeulemhf
More test fixes.

Show diffs side-by-side

added added

removed removed

Lines of Context:
75
75
        self.root = InventoryDirectory(ROOT_ID, '', None)
76
76
 
77
77
    inventory = property(lambda x:x)
 
78
    root_inventory = property(lambda x:x)
78
79
 
79
80
    def all_file_ids(self):
80
81
        return set(self.paths.keys())
81
82
 
 
83
    def is_executable(self, file_id):
 
84
        return False
 
85
 
82
86
    def __getitem__(self, file_id):
83
87
        if file_id == self.root.file_id:
84
88
            return self.root