~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

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

  • Committer: Aaron Bentley
  • Date: 2007-03-12 13:31:42 UTC
  • mto: (2323.6.9 0.15-integration)
  • mto: This revision was merged to the branch mainline in revision 2342.
  • Revision ID: abentley@panoramicfeedback.com-20070312133142-ox3xn8jpns33gqd7
speling fix

Show diffs side-by-side

added added

removed removed

Lines of Context:
328
328
        self.assertEqual('-----BEGIN PSEUDO-SIGNED CONTENT-----\n' +
329
329
                         Testament.from_revision(branch.repository,
330
330
                         'A').as_short_text() +
331
 
                         '-----END PSUDO-SIGNED CONTENT-----\n',
 
331
                         '-----END PSEUDO-SIGNED CONTENT-----\n',
332
332
                         branch.repository.get_signature_text('A'))
333
333
 
334
334
    def test_store_signature(self):
341
341
                          'A')
342
342
        wt.commit("base", allow_pointless=True, rev_id='A')
343
343
        self.assertEqual('-----BEGIN PSEUDO-SIGNED CONTENT-----\n'
344
 
                         'FOO-----END PSUDO-SIGNED CONTENT-----\n',
 
344
                         'FOO-----END PSEUDO-SIGNED CONTENT-----\n',
345
345
                         branch.repository.get_signature_text('A'))
346
346
 
347
347
    def test_branch_keeps_signatures(self):