/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

Add appveyor configuration and fix build of extensions on Windows.

Merged from https://code.launchpad.net/~jelmer/brz/appveyor/+merge/364019

Show diffs side-by-side

added added

removed removed

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