(self)
| 232 | self.temp_dir = tempfile.mkdtemp() |
| 233 | |
| 234 | def tearDown(self): |
| 235 | reset_memory() |
| 236 | # Cleanup temp files |
| 237 | import shutil |
| 238 | shutil.rmtree(self.temp_dir, ignore_errors=True) |
| 239 | |
| 240 | def test_load_file_with_content(self): |
| 241 | """load_file should add file to working memory when content provided.""" |
nothing calls this directly
no test coverage detected