File size: 296 Bytes
cfd3735
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
"""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"