10 lines
224 B
Python
10 lines
224 B
Python
"""Pytest configuration and shared fixtures."""
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.fixture
|
|
def sample_pdf_bytes():
|
|
"""Fixture providing sample PDF bytes for testing."""
|
|
return b"%PDF-1.4\n%fake pdf content for testing\n%%EOF"
|