Helper to create minimal CSV files for testing
(file_path, data)
| 28 | return tokens |
| 29 | |
| 30 | def create_minimal_csv(file_path, data): |
| 31 | """Helper to create minimal CSV files for testing""" |
| 32 | df = pd.DataFrame(data) |
| 33 | df.to_csv(file_path, index=False) |
| 34 | |
| 35 | class TestDataModule(unittest.TestCase): |
| 36 | @classmethod |