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