9 lines
238 B
Python
9 lines
238 B
Python
import pytest
|
|
|
|
from app.kab_ingestion.domain.models import SourceDocument
|
|
|
|
|
|
@pytest.fixture
|
|
def document() -> SourceDocument:
|
|
return SourceDocument("doc-1", "Guide", "Useful content", "github", metadata={"governance_approved": True})
|