Add test for PR 136 and bump version

This commit is contained in:
Jeremy Singer-Vine
2019-08-29 19:05:23 -04:00
parent db6df96cd6
commit 4ef679d6d7
4 changed files with 8 additions and 2 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
# PDFPlumber `v0.5.12`
# PDFPlumber `v0.5.13`
Plumb a PDF for detailed information about each text character, rectangle, and line. Plus: Table extraction and visual debugging.
+1 -1
View File
@@ -1,2 +1,2 @@
version_info = (0, 5, 12)
version_info = (0, 5, 13)
__version__ = '.'.join(map(str, version_info))
Binary file not shown.
+6
View File
@@ -124,3 +124,9 @@ class Test(unittest.TestCase):
page = pdf.pages[0]
words = page.extract_words()
def test_pr_136(self):
path = os.path.join(HERE, "pdfs/pr-136-example.pdf")
with pdfplumber.open(path) as pdf:
page = pdf.pages[0]
words = page.extract_words()