~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/__init__.py

  • Committer: John Arbash Meinel
  • Date: 2008-06-06 13:30:30 UTC
  • mto: This revision was merged to the branch mainline in revision 3482.
  • Revision ID: john@arbash-meinel.com-20080606133030-9cnvpyem4mnplg8k
Rename UnicodeFilename => UnicodeFilenameFeature

Show diffs side-by-side

added added

removed removed

Lines of Context:
3062
3062
OsFifoFeature = _OsFifoFeature()
3063
3063
 
3064
3064
 
3065
 
class _UnicodeFilename(Feature):
 
3065
class _UnicodeFilenameFeature(Feature):
3066
3066
    """Does the filesystem support Unicode filenames?"""
3067
3067
 
3068
3068
    def _probe(self):
3079
3079
            # for some reason.
3080
3080
            return True
3081
3081
 
3082
 
UnicodeFilename = _UnicodeFilename()
 
3082
UnicodeFilenameFeature = _UnicodeFilenameFeature()
3083
3083
 
3084
3084
 
3085
3085
class TestScenarioApplier(object):