MCPcopy Create free account
hub / github.com/ScrapeGraphAI/Scrapegraph-ai / sample_json_data

Function sample_json_data

tests/conftest.py:226–237  ·  view source on GitHub ↗

Sample JSON data for testing.

()

Source from the content-addressed store, hash-verified

224
225@pytest.fixture
226def sample_json_data() -> Dict[str, Any]:
227 """Sample JSON data for testing."""
228 return {
229 "name": "Test Company",
230 "description": "A test company description",
231 "employees": [
232 {"name": "Alice", "role": "Engineer"},
233 {"name": "Bob", "role": "Designer"},
234 ],
235 "founded": "2020",
236 "location": "San Francisco",
237 }
238
239
240@pytest.fixture

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected