~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/branch_implementations/test_branch.py

remove all trailing whitespace from bzr source

Show diffs side-by-side

added added

removed removed

Lines of Context:
207
207
        self.assertEqual(branch.get_submit_branch(), 'sftp://example.com')
208
208
        branch.set_submit_branch('sftp://example.net')
209
209
        self.assertEqual(branch.get_submit_branch(), 'sftp://example.net')
210
 
        
 
210
 
211
211
    def test_public_branch(self):
212
212
        """public location can be queried and set"""
213
213
        branch = self.make_branch('branch')
253
253
                          None)
254
254
 
255
255
# TODO 20051003 RBC:
256
 
# compare the gpg-to-sign info for a commit with a ghost and 
 
256
# compare the gpg-to-sign info for a commit with a ghost and
257
257
#     an identical tree without a ghost
258
258
# fetch missing should rewrite the TOC of weaves to list newly available parents.
259
 
        
 
259
 
260
260
    def test_sign_existing_revision(self):
261
261
        wt = self.make_branch_and_tree('.')
262
262
        branch = wt.branch
347
347
 
348
348
    def test_nicks(self):
349
349
        """Test explicit and implicit branch nicknames.
350
 
        
 
350
 
351
351
        Nicknames are implicitly the name of the branch's directory, unless an
352
352
        explicit nickname is set.  That is, an explicit nickname always
353
353
        overrides the implicit one.