feat(project): initialize ZUGFeRD service with pyproject.toml and directory structure

This commit is contained in:
m3tm3re
2026-02-04 19:19:44 +01:00
parent 48ad42aa19
commit 0db2482bf2
19 changed files with 2114 additions and 0 deletions

1
tests/__init__.py Normal file
View File

@@ -0,0 +1 @@
"""Test suite for ZUGFeRD service."""

9
tests/conftest.py Normal file
View File

@@ -0,0 +1,9 @@
"""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"

0
tests/fixtures/.gitkeep vendored Normal file
View File