/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 tests/test_transportgit.py

TestĀ transportgit.

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
"""Tests for bzr-git's object store."""
18
18
 
19
19
 
20
 
from dulwich.tests.test_object_store import PackBasedObjectStoreTests
21
 
from dulwich.tests.test_repository import RefsContainerTests
 
20
from dulwich.tests.test_object_store import ObjectStoreTests
22
21
 
23
22
from bzrlib.tests import TestCaseWithTransport
24
23
 
25
 
from bzrlib.plugins.git.transportgit import TransportObjectStore, TransportRefsContainer
26
 
 
27
 
 
28
 
class TransportObjectStoreTests(PackBasedObjectStoreTests, TestCaseWithTransport):
 
24
from bzrlib.plugins.git.transportgit import TransportObjectStore
 
25
 
 
26
 
 
27
class TransportObjectStoreTests(ObjectStoreTests, TestCaseWithTransport):
29
28
 
30
29
    def setUp(self):
31
30
        TestCaseWithTransport.setUp(self)
32
31
        self.store = TransportObjectStore.init(self.get_transport())
33
32
 
34
 
# FIXME: Unfortunately RefsContainerTests requires on a specific set of refs existing.
35
 
 
36
 
# class TransportRefContainerTests(RefsContainerTests, TestCaseWithTransport):
37
 
#
38
 
#    def setUp(self):
39
 
#        TestCaseWithTransport.setUp(self)
40
 
#        self._refs = TransportRefsContainer(self.get_transport())
41