13 lines
353 B
Python
13 lines
353 B
Python
"""Module defines common test data."""
|
|
|
|
from pathlib import Path
|
|
|
|
_THIS_DIR = Path(__file__).parent
|
|
|
|
_EXAMPLES_DIR = _THIS_DIR / "integration_tests" / "examples"
|
|
|
|
# Paths to test PDF files
|
|
HELLO_PDF = _EXAMPLES_DIR / "hello.pdf"
|
|
LAYOUT_PARSER_PAPER_PDF = _EXAMPLES_DIR / "layout-parser-paper.pdf"
|
|
DUPLICATE_CHARS = _EXAMPLES_DIR / "duplicate-chars.pdf"
|