MCPcopy Create free account
hub / github.com/AkaliKong/MiniOneRec / create_minimal_csv

Function create_minimal_csv

data_test.py:30–33  ·  view source on GitHub ↗

Helper to create minimal CSV files for testing

(file_path, data)

Source from the content-addressed store, hash-verified

28 return tokens
29
30def 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
35class TestDataModule(unittest.TestCase):
36 @classmethod

Callers 1

setUpClassMethod · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected