/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/blackbox/test_non_ascii.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2009-03-09 08:45:56 UTC
  • mfrom: (4084.5.2 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20090309084556-9i2m12qlud2qcrtw
(robertc) Bulk update all test adaptation into a single approach
        using multiply_tests rather than many varied test adapters.
        (Robert Collins

Show diffs side-by-side

added added

removed removed

Lines of Context:
20
20
import os
21
21
 
22
22
from bzrlib import osutils, urlutils
23
 
from bzrlib.tests import TestCaseWithTransport, TestSkipped
 
23
from bzrlib.tests import (
 
24
    TestCaseWithTransport,
 
25
    TestSkipped,
 
26
    multiply_tests,
 
27
    )
 
28
from bzrlib.tests.EncodingAdapter import encoding_scenarios
24
29
from bzrlib.trace import mutter, note
25
30
 
26
31
 
 
32
def load_tests(standard_tests, module, loader):
 
33
    return multiply_tests(standard_tests, encoding_scenarios,
 
34
        loader.suiteClass())
 
35
 
 
36
 
27
37
class TestNonAscii(TestCaseWithTransport):
28
38
    """Test that bzr handles files/committers/etc which are non-ascii."""
29
39