Should record error occurrence.
(self)
| 131 | reset_error_database() |
| 132 | |
| 133 | def test_record_error(self): |
| 134 | """Should record error occurrence.""" |
| 135 | db = ErrorDatabase() |
| 136 | key = db.record_error("ModuleNotFoundError", "No module named 'flask'") |
| 137 | assert key is not None |
| 138 | |
| 139 | def test_record_fix(self): |
| 140 | """Should record fix for error.""" |
nothing calls this directly
no test coverage detected