summaryrefslogtreecommitdiff
path: root/Lib/test/test_imghdr.py
diff options
context:
space:
mode:
authorBerker Peksag <berker.peksag@gmail.com>2017-02-04 09:18:42 +0300
committerBerker Peksag <berker.peksag@gmail.com>2017-02-04 09:18:42 +0300
commit678487eb345f9f9dea3d3818ecad7d39145bdc65 (patch)
tree35c1a98d1ceadc6b67bf7119031d2a89f27f1cb1 /Lib/test/test_imghdr.py
parent50a3761c130e9be725bacb5b99d624012c40414a (diff)
parent19d8ebcbbd396ec603ed03bc79add9b049c31919 (diff)
downloadcpython-678487eb345f9f9dea3d3818ecad7d39145bdc65.tar.gz
Issue #29198: Merge from 3.5
Diffstat (limited to 'Lib/test/test_imghdr.py')
-rw-r--r--Lib/test/test_imghdr.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/Lib/test/test_imghdr.py b/Lib/test/test_imghdr.py
index b54daf8e2c..476ba95f17 100644
--- a/Lib/test/test_imghdr.py
+++ b/Lib/test/test_imghdr.py
@@ -1,6 +1,7 @@
import imghdr
import io
import os
+import pathlib
import unittest
import warnings
from test.support import findfile, TESTFN, unlink
@@ -49,6 +50,12 @@ class TestImghdr(unittest.TestCase):
self.assertEqual(imghdr.what(None, data), expected)
self.assertEqual(imghdr.what(None, bytearray(data)), expected)
+ def test_pathlike_filename(self):
+ for filename, expected in TEST_FILES:
+ with self.subTest(filename=filename):
+ filename = findfile(filename, subdir='imghdrdata')
+ self.assertEqual(imghdr.what(pathlib.Path(filename)), expected)
+
def test_register_test(self):
def test_jumbo(h, file):
if h.startswith(b'eggs'):