~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/test_btree_index.py

  • Committer: Martin
  • Date: 2011-05-21 16:29:38 UTC
  • mto: This revision was merged to the branch mainline in revision 5907.
  • Revision ID: gzlist@googlemail.com-20110521162938-1vrw3hp0197l3vrl
Add tests for non-ascii conflict serialisation

Show diffs side-by-side

added added

removed removed

Lines of Context:
33
33
    TestCaseWithTransport,
34
34
    scenarios,
35
35
    )
36
 
from bzrlib.tests import (
37
 
    features,
38
 
    )
39
36
 
40
37
 
41
38
load_tests = scenarios.load_tests_apply_scenarios
50
47
    return scenarios
51
48
 
52
49
 
53
 
compiled_btreeparser_feature = features.ModuleAvailableFeature(
 
50
compiled_btreeparser_feature = tests.ModuleAvailableFeature(
54
51
    'bzrlib._btree_serializer_pyx')
55
52
 
56
53