diff options
author | Olivier Tilloy <olivier@tilloy.net> | 2009-04-08 09:46:13 +0200 |
---|---|---|
committer | Olivier Tilloy <olivier@tilloy.net> | 2009-04-08 09:46:13 +0200 |
commit | d33806fab7b3aebca64c1c60bc8151c334cc680b (patch) | |
tree | b96468700b078733fa95d041ad0ee903d30e863d /unittest | |
parent | 3b91e4461c151526b0d02e2effaae869de33a96c (diff) | |
download | pyexiv2-d33806fab7b3aebca64c1c60bc8151c334cc680b.tar.gz |
More non implemented unit tests for completeness.
Diffstat (limited to 'unittest')
-rw-r--r-- | unittest/iptc.py | 16 | ||||
-rw-r--r-- | unittest/xmp.py | 17 |
2 files changed, 33 insertions, 0 deletions
diff --git a/unittest/iptc.py b/unittest/iptc.py index a52ab01..0f98b8c 100644 --- a/unittest/iptc.py +++ b/unittest/iptc.py @@ -160,3 +160,19 @@ class TestIptcTag(unittest.TestCase): '�lj1�eEϟ�u����ᒻ;C(�SpI]���QI�}') # Invalid values self.failUnlessRaises(IptcValueError, IptcTag._convert_to_string, None, xtype) + + def test_set_values_no_metadata(self): + # TODO + raise NotImplementedError() + + def test_set_values_with_metadata(self): + # TODO + raise NotImplementedError() + + def test_del_values_no_metadata(self): + # TODO + raise NotImplementedError() + + def test_del_values_with_metadata(self): + # TODO + raise NotImplementedError() diff --git a/unittest/xmp.py b/unittest/xmp.py index c672d9d..2db7ca9 100644 --- a/unittest/xmp.py +++ b/unittest/xmp.py @@ -302,3 +302,20 @@ class TestXmpTag(unittest.TestCase): self.failUnlessRaises(XmpValueError, XmpTag._convert_to_string, None, xtype) # TODO: other types + + + def test_set_values_no_metadata(self): + # TODO + raise NotImplementedError() + + def test_set_values_with_metadata(self): + # TODO + raise NotImplementedError() + + def test_del_values_no_metadata(self): + # TODO + raise NotImplementedError() + + def test_del_values_with_metadata(self): + # TODO + raise NotImplementedError() |