~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

  • Committer: John Arbash Meinel
  • Date: 2006-01-03 19:54:12 UTC
  • mto: (1185.50.40 bzr-jam-integration)
  • mto: This revision was merged to the branch mainline in revision 1549.
  • Revision ID: john@arbash-meinel.com-20060103195412-a14e7c169cda46ba
don't create ancestry.weave

Show diffs side-by-side

added added

removed removed

Lines of Context:
221
221
        self.assertEqual(committed.properties["branch-nick"], 
222
222
                         "My happy branch")
223
223
 
 
224
    def test_no_ancestry_weave(self):
 
225
        # We no longer need to create the ancestry.weave file
 
226
        # since it is *never* used.
 
227
        branch = Branch.initialize(u'.')
 
228
        self.failIfExists('.bzr/ancestry.weave')
 
229
 
224
230
 
225
231
class TestRemote(TestCaseWithWebserver):
226
232