~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: Robert Collins
  • Date: 2008-07-30 07:52:22 UTC
  • mto: This revision was merged to the branch mainline in revision 3596.
  • Revision ID: robertc@robertcollins.net-20080730075222-azbmg0knc7u9mkpg
Create acceptance test for bug 150438.

Show diffs side-by-side

added added

removed removed

Lines of Context:
2132
2132
            tree = workingtree.WorkingTree.open(root_path)
2133
2133
        if not isinstance(path, basestring):
2134
2134
            for p in path:
2135
 
                self.assertInWorkingTree(p,tree=tree)
 
2135
                self.assertInWorkingTree(p, tree=tree)
2136
2136
        else:
2137
2137
            self.assertIsNot(tree.path2id(path), None,
2138
2138
                path+' not in working tree.')