summaryrefslogtreecommitdiffstats
path: root/bindings/python/tests
diff options
context:
space:
mode:
authortmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6>2008-08-20 17:37:32 +0000
committertmzullinger <tmzullinger@f01d2545-417e-4e96-918e-98f8d0dbbcb6>2008-08-20 17:37:32 +0000
commita784f5941d57b692338782b1955f5721aaabaa7d (patch)
tree37bb6b8b5441a64777d5a2faca68326fc4777633 /bindings/python/tests
parent11917cb3864eba4e3314719523849868f8a127cc (diff)
downloadlibgpod-a784f5941d57b692338782b1955f5721aaabaa7d.tar.gz
libgpod-a784f5941d57b692338782b1955f5721aaabaa7d.tar.xz
libgpod-a784f5941d57b692338782b1955f5721aaabaa7d.zip
Update python bindings to work with the new thumbnail API.python-thumb-api-fix-v2
This removes sw_get_artwork_thumbnails() and the Thumbnail class from the python bindings. The get_pixbuf() function is now in the Photo class. git-svn-id: https://gtkpod.svn.sf.net/svnroot/gtkpod/libgpod/trunk@2108 f01d2545-417e-4e96-918e-98f8d0dbbcb6
Diffstat (limited to 'bindings/python/tests')
-rw-r--r--bindings/python/tests/tests.py5
1 files changed, 0 insertions, 5 deletions
diff --git a/bindings/python/tests/tests.py b/bindings/python/tests/tests.py
index f52015e..6efb114 100644
--- a/bindings/python/tests/tests.py
+++ b/bindings/python/tests/tests.py
@@ -182,10 +182,5 @@ class TestPhotoDatabase(unittest.TestCase):
for album in self.db.PhotoAlbums:
[photo for photo in album]
- def testEnumeratePhotosThumbs(self):
- for album in self.db.PhotoAlbums:
- for photo in album:
- [thumb for thumb in photo.thumbnails]
-
if __name__ == '__main__':
unittest.main()