~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/teststore.py

  • Committer: Robert Collins
  • Date: 2005-10-18 06:42:17 UTC
  • mfrom: (0.2.1)
  • mto: This revision was merged to the branch mainline in revision 1463.
  • Revision ID: robertc@robertcollins.net-20051018064217-e810bd94c74a9ad1
Factor out the guts of 'pull' from the command into WorkingTree.pull().
(Robert Collins)

Show diffs side-by-side

added added

removed removed

Lines of Context:
353
353
        self.assertEqual('content', to_store.get('foo').read())
354
354
        self.assertEqual('signature', to_store.get('foo', 'sig').read())
355
355
        self.assertRaises(KeyError, to_store.get, 'missing', 'sig')
356
 
 
357
 
    def test_relpath_escaped(self):
358
 
        my_store = store.TransportStore(MemoryTransport())
359
 
        self.assertEqual('%25', my_store._relpath('%'))