Create a sample Result for testing.
()
| 241 | |
| 242 | @pytest.fixture |
| 243 | def sample_result(): |
| 244 | """Create a sample Result for testing.""" |
| 245 | from datastudio.operators.core.result import Result |
| 246 | |
| 247 | return Result(item_idx=0) |
| 248 | |
| 249 | |
| 250 | # ============================================================================= |