genre for pictures
[wolnelektury.git] / apps / picture / tests / picture_import.py
index 785aa6d..68c8753 100644 (file)
@@ -22,3 +22,12 @@ class PictureTest(WLTestCase):
 
         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
+