diff options
Diffstat (limited to 'wkhtmltopdf/tests/tests.py')
-rw-r--r-- | wkhtmltopdf/tests/tests.py | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/wkhtmltopdf/tests/tests.py b/wkhtmltopdf/tests/tests.py index 8f40c5e..822f529 100644 --- a/wkhtmltopdf/tests/tests.py +++ b/wkhtmltopdf/tests/tests.py @@ -130,8 +130,14 @@ class TestViews(TestCase): self.assertEqual(response['Content-Disposition'], 'attachment; filename="4\'5.pdf"') response = PDFResponse(content=content, filename=u"♥.pdf") + try: + import unidecode + except ImportError: + filename = '?.pdf' + else: + filename = '.pdf' self.assertEqual(response['Content-Disposition'], - 'attachment; filename="?.pdf"') + 'attachment; filename="{0}"'.format(filename)) # Content as a direct output response = PDFResponse(content=content, filename="nospace.pdf", @@ -148,8 +154,14 @@ class TestViews(TestCase): 'inline; filename="4\'5.pdf"') response = PDFResponse(content=content, filename=u"♥.pdf", show_content_in_browser=True) + try: + import unidecode + except ImportError: + filename = '?.pdf' + else: + filename = '.pdf' self.assertEqual(response['Content-Disposition'], - 'inline; filename="?.pdf"') + 'inline; filename="{0}"'.format(filename)) # Content-Type response = PDFResponse(content=content, |