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

  • Committer: Jelmer Vernooij
  • Date: 2017-05-21 18:10:28 UTC
  • mto: This revision was merged to the branch mainline in revision 6623.
  • Revision ID: jelmer@jelmer.uk-20170521181028-zn04pdfw0od9hfj3
Rename brzlib => breezy.

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import pprint
21
21
import zlib
22
22
 
23
 
from brzlib import (
 
23
from breezy import (
24
24
    btree_index,
25
25
    errors,
26
26
    fifo_cache,
29
29
    tests,
30
30
    transport,
31
31
    )
32
 
from brzlib.tests import (
 
32
from breezy.tests import (
33
33
    TestCaseWithTransport,
34
34
    scenarios,
35
35
    )
36
 
from brzlib.tests import (
 
36
from breezy.tests import (
37
37
    features,
38
38
    )
39
39
 
42
42
 
43
43
 
44
44
def btreeparser_scenarios():
45
 
    import brzlib._btree_serializer_py as py_module
 
45
    import breezy._btree_serializer_py as py_module
46
46
    scenarios = [('python', {'parse_btree': py_module})]
47
47
    if compiled_btreeparser_feature.available():
48
48
        scenarios.append(('C', 
51
51
 
52
52
 
53
53
compiled_btreeparser_feature = features.ModuleAvailableFeature(
54
 
    'brzlib._btree_serializer_pyx')
 
54
    'breezy._btree_serializer_pyx')
55
55
 
56
56
 
57
57
class BTreeTestCase(TestCaseWithTransport):