Sample JSON data for testing.
()
| 224 | |
| 225 | @pytest.fixture |
| 226 | def 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 |
nothing calls this directly
no outgoing calls
no test coverage detected