blob: ab8d6ead37fc2f406b1e9646e1a948bdcef41452 (
plain)
1
2
3
4
5
6
7
8
9
|
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)
|