/brz/remove-bazaar

To get this branch, use:
bzr branch http://gegoxaren.bato24.eu/bzr/brz/remove-bazaar

« back to all changes in this revision

Viewing changes to bzrlib/selftest/teststore.py

  • Committer: Michael Ellerman
  • Date: 2005-10-26 10:03:47 UTC
  • mfrom: (1185.16.116)
  • mto: (1185.16.126)
  • mto: This revision was merged to the branch mainline in revision 1488.
  • Revision ID: michael@ellerman.id.au-20051026100347-bb0b2bd42f7953f2
MergeĀ mainline.

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('%'))