Should return complete status.
(self)
| 296 | assert pref == "pytest" |
| 297 | |
| 298 | def test_get_status(self): |
| 299 | """Should return complete status.""" |
| 300 | lm = LearningManager() |
| 301 | status = lm.get_status() |
| 302 | |
| 303 | assert "preferences" in status |
| 304 | assert "errors" in status |
| 305 | assert "strategies" in status |
| 306 | |
| 307 | |
| 308 | if __name__ == "__main__": |
nothing calls this directly
no test coverage detected