mirror of
https://github.com/jointakahe/takahe.git
synced 2024-11-22 23:30:59 +00:00
9 lines
204 B
Python
9 lines
204 B
Python
import pytest
|
|
from pyld import jsonld
|
|
|
|
from core.ld import builtin_document_loader
|
|
|
|
|
|
@pytest.fixture(scope="session", autouse=True)
|
|
def ldloader():
|
|
jsonld.set_document_loader(builtin_document_loader)
|