~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_branch.py

[merge] jam-pending 1502: remove ancestry.weave, remove --all from uncommit.

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