From ab8fda2c128eeaa45f71d2e27da7e627c439d251 Mon Sep 17 00:00:00 2001 From: Olivier Tilloy Date: Mon, 9 Mar 2009 19:39:54 +0100 Subject: EXIF Undefined to string conversion. --- unittest/exif.py | 8 ++++++++ 1 file changed, 8 insertions(+) (limited to 'unittest') diff --git a/unittest/exif.py b/unittest/exif.py index 0f7df8f..419b2dd 100644 --- a/unittest/exif.py +++ b/unittest/exif.py @@ -174,3 +174,11 @@ class TestExifTag(unittest.TestCase): u'Digital still camera') # Invalid values self.failUnlessRaises(ExifValueError, ExifTag._convert_to_python, 'abc', xtype, None) + + def test_convert_to_string_undefined(self): + xtype = 'Undefined' + # Valid values + self.assertEqual(ExifTag._convert_to_string('48 49 48 48 ', xtype), '48 49 48 48 ') + self.assertEqual(ExifTag._convert_to_string(u'48 49 48 48 ', xtype), '48 49 48 48 ') + # Invalid values + self.failUnlessRaises(ExifValueError, ExifTag._convert_to_string, 3, xtype) -- cgit