fnp
/
wolnelektury.git
/ blobdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
raw
|
inline
| side by side
Layout fixes, cover update for files.
[wolnelektury.git]
/
src
/
api
/
tests
/
tests.py
diff --git
a/src/api/tests/tests.py
b/src/api/tests/tests.py
index
f85a061
..
5ad5ca3
100644
(file)
--- a/
src/api/tests/tests.py
+++ b/
src/api/tests/tests.py
@@
-29,6
+29,8
@@
from api.models import Consumer, Token
'BACKEND': 'django.core.cache.backends.dummy.DummyCache'}},
)
class ApiTest(TestCase):
'BACKEND': 'django.core.cache.backends.dummy.DummyCache'}},
)
class ApiTest(TestCase):
+ maxDiff = None
+
def load_json(self, url):
content = self.client.get(url).content
try:
def load_json(self, url):
content = self.client.get(url).content
try:
@@
-106,16
+108,18
@@
class TagTests(ApiTest):
class PictureTests(ApiTest):
def test_publish(self):
slug = "kandinsky-composition-viii"
class PictureTests(ApiTest):
def test_publish(self):
slug = "kandinsky-composition-viii"
- xml = SimpleUploadedFile(
- 'composition8.xml',
- open(path.join(
+ with open(path.join(
picture.tests.__path__[0], "files", slug + ".xml"
picture.tests.__path__[0], "files", slug + ".xml"
- ), 'rb').read())
- img = SimpleUploadedFile(
- 'kompozycja-8.png',
- open(path.join(
+ ), 'rb') as f:
+ xml = SimpleUploadedFile(
+ 'composition8.xml',
+ f.read())
+ with open(path.join(
picture.tests.__path__[0], "files", slug + ".png"
picture.tests.__path__[0], "files", slug + ".png"
- ), 'rb').read())
+ ), 'rb') as f:
+ img = SimpleUploadedFile(
+ 'kompozycja-8.png',
+ f.read())
import_form = PictureImportForm({}, {
'picture_xml_file': xml,
import_form = PictureImportForm({}, {
'picture_xml_file': xml,