typo
[wolnelektury.git] / apps / picture / tests / picture_import.py
index 202acdd..68c8753 100644 (file)
@@ -2,11 +2,11 @@
 from __future__ import with_statement
 
 from os import path
-from django.test import TestCase
 from picture.models import Picture
+from catalogue.test_utils import WLTestCase
 
 
-class PictureTest(TestCase):
+class PictureTest(WLTestCase):
     
     def test_import(self):
         picture = Picture.from_xml_file(path.join(path.dirname(__file__), "files/kandinsky-composition-viii.xml"))
@@ -22,3 +22,12 @@ class PictureTest(TestCase):
 
         picture.delete()
         
+
+    def test_import_2(self):
+        picture = Picture.from_xml_file(path.join(path.dirname(__file__), "files/pejzaz-i-miasto-krzyzanowski-chmury.xml"),
+                                        path.join(path.dirname(__file__), "files/pejzaz-i-miasto-krzyzanowski-chmury.jpg"),
+                                        overwrite=True)
+        cats = set([t.category for t in picture.tags])
+        assert 'genre' in cats
+        assert 'kind' in cats
+