~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testrevision.py

  • Committer: Robert Collins
  • Date: 2005-09-06 15:19:44 UTC
  • mto: (1092.3.1)
  • mto: This revision was merged to the branch mainline in revision 1397.
  • Revision ID: robertc@robertcollins.net-20050906151944-04320f095a2abc31
minor refactors to store, create an ImmutableMemoryStore for testing or other such operations

Show diffs side-by-side

added added

removed removed

Lines of Context:
169
169
                          revisions[4])
170
170
        self.assertEqual(common_ancestor(revisions_2[6], revisions[5], sources),
171
171
                          revisions_2[5])
 
172
 
 
173
class TestCreateSignedRevision(TestCaseInTempDir):
 
174
 
 
175
    def test_create_signed_revision(self):
 
176
        # create a store
 
177
        # create a revision, sign it, apply to the store.
 
178
        pass
 
179