update tests
[wolnelektury.git] / apps / picture / tests / picture_import.py
index 9e965f9..202acdd 100644 (file)
@@ -1,16 +1,10 @@
 # -*- coding: utf-8 -*-
 from __future__ import with_statement
 
-from django.core.files.base import ContentFile, File
-from catalogue.test_utils import *
-from catalogue import models
-from librarian import WLURI
+from os import path
+from django.test import TestCase
 from picture.models import Picture
 
-from nose.tools import raises
-import tempfile
-from os import unlink, path, makedirs
-
 
 class PictureTest(TestCase):
     
@@ -19,4 +13,12 @@ class PictureTest(TestCase):
 
         motifs = set([tag.name for tag in picture.tags if tag.category == 'theme'])
         assert motifs == set([u'nieporządek']), 'theme tags are wrong. %s' % motifs
-    
+
+        picture.delete()
+
+    def test_import_with_explicit_image(self):
+        picture = Picture.from_xml_file(path.join(path.dirname(__file__), "files/kandinsky-composition-viii.xml"),
+                                        path.join(path.dirname(__file__), "files/kandinsky-composition-viii.png"))
+
+        picture.delete()
+