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

  • Committer: John Arbash Meinel
  • Date: 2006-04-25 18:08:29 UTC
  • mto: This revision was merged to the branch mainline in revision 1752.
  • Revision ID: john@arbash-meinel.com-20060425180829-43a8d6c25d903d17
Minor cleanups

Show diffs side-by-side

added added

removed removed

Lines of Context:
23
23
 
24
24
from bzrlib.tests import TestSuite
25
25
 
26
 
# prefix for micro (1/1000)
 
26
# prefix for micro (1/1000000)
27
27
_mu = u'\xb5'
28
28
 
29
29
# Swedish?
70
70
# Shalom -> 'hello' or 'peace', used as a common greeting
71
71
_shalom = u'\u05e9\u05dc\u05d5\u05dd'
72
72
 
 
73
 
73
74
class EncodingTestAdapter(object):
74
75
    """A tool to generate a suite, testing multiple encodings for a single test.
75
76