/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/test_cache_utf8.py

  • Committer: Robert Collins
  • Date: 2007-03-05 03:10:21 UTC
  • mto: (2255.11.4 dirstate)
  • mto: This revision was merged to the branch mainline in revision 2322.
  • Revision ID: robertc@robertcollins.net-20070305031021-ypbakvagbivyw5mu
Teach delta.report_changes about unversioned files, removing all inventory access during status --short.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
#
13
13
# You should have received a copy of the GNU General Public License
14
14
# along with this program; if not, write to the Free Software
15
 
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
 
15
# Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
16
16
 
17
17
"""Tests for utf8 caching."""
18
18
 
23
23
 
24
24
 
25
25
class TestEncodeCache(TestCase):
26
 
 
 
26
    
27
27
    def setUp(self):
28
28
        super(TestEncodeCache, self).setUp()
29
29
        cache_utf8.clear_encoding_cache()
111
111
        self.assertIs(utf8_x, x)
112
112
 
113
113
    def test_decode_with_None(self):
114
 
        self.assertEqual(None, cache_utf8._utf8_decode_with_None(None))
115
 
        self.assertEqual(u'foo', cache_utf8._utf8_decode_with_None('foo'))
116
 
        self.assertEqual(u'f\xb5',
117
 
                         cache_utf8._utf8_decode_with_None('f\xc2\xb5'))
 
114
        self.assertEqual((None, 0), cache_utf8._utf8_decode_with_None(None))