Create a DataItem instance for testing.
(sample_data_item)
| 178 | |
| 179 | @pytest.fixture |
| 180 | def data_item(sample_data_item): |
| 181 | """Create a DataItem instance for testing.""" |
| 182 | from datastudio.operators.core.data_item import DataItem |
| 183 | |
| 184 | return DataItem(sample_data_item) |
| 185 | |
| 186 | |
| 187 | @pytest.fixture |