(self)
| 24 | _mem.clear() |
| 25 | |
| 26 | def test_default_ignore(self): |
| 27 | res = load_file(".env") |
| 28 | self.assertIn("[ERROR] File is ignored", res) |
| 29 | |
| 30 | def test_custom_ignore(self): |
| 31 | self.ignore_file.write_text("*.log\nsecrets/") |
nothing calls this directly
no test coverage detected