~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_locale.py

resolve conflicts against trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2006 Canonical Ltd
 
1
# Copyright (C) 2006, 2011 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
76
76
message:
77
77
  Unicode ? commit
78
78
""", out)
 
79
 
 
80
 
 
81
class TestMultibyteCodecs(tests.TestCaseWithTransport):
 
82
    """Tests for quirks of multibyte encodings and their python codecs"""
 
83
 
 
84
    def test_plugins_mbcs(self):
 
85
        """Ensure the plugins command works with cjkcodecs, see lp:754082"""
 
86
        self.disable_missing_extensions_warning()
 
87
        out, err = self.run_bzr(["plugins"], encoding="EUC-JP")
 
88
        # The output is tested in bt.test_plugins rather than here
 
89
        self.assertEqual("", err)