💬 RFC
Goals:
🔦 Context
💻 Examples
import pytest
import tamr_client as tc
from tests.utils import fake_tamr
@fake_tamr
@given(s=session, i=instance)
def test_from_resource_id_mastering(s: Session, i: Instance):
p = tc.project.from_resource_id(s, instance, "1")
assert isinstance(p, tc.MasteringProject)
assert p.name == "proj"
assert p.description == "Mastering Project"
💬 RFC
Goals:
responsesAPI) (Utilities for fake resources #424)🔦 Context
💻 Examples