/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 breezy/git/tests/test_object_store.py

  • Committer: Jelmer Vernooij
  • Date: 2019-03-05 09:17:49 UTC
  • mto: (7290.1.21 work)
  • mto: This revision was merged to the branch mainline in revision 7311.
  • Revision ID: jelmer@jelmer.uk-20190305091749-9nho7t0qnk19vzav
Fix some more tests.

Show diffs side-by-side

added added

removed removed

Lines of Context:
44
44
    TestCase,
45
45
    TestCaseWithTransport,
46
46
    )
 
47
from ...tests.features import SymlinkFeature
47
48
 
48
49
from ..cache import (
49
50
    DictGitShaMap,
171
172
        self.assertEqual(b, self.store[b.id])
172
173
 
173
174
    def test_directory_converted_to_symlink(self):
 
175
        self.requireFeature(SymlinkFeature)
174
176
        b = Blob()
175
177
        b.data = b'trgt'
176
178
        self.store.lock_read()