/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: Robert Collins
  • Date: 2009-03-07 06:58:17 UTC
  • mto: This revision was merged to the branch mainline in revision 4098.
  • Revision ID: robertc@robertcollins.net-20090307065817-btjngdy1cvv4nwfo
Bulk update all test adaptation into a single approach, using multiply_tests rather than test adapters.

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