Should return status dict.
(self)
| 116 | assert result == "pytest" |
| 117 | |
| 118 | def test_status(self): |
| 119 | """Should return status dict.""" |
| 120 | pm = PreferenceManager() |
| 121 | status = pm.status() |
| 122 | assert "preferences" in status |
| 123 | assert "confidence" in status |
| 124 | |
| 125 | |
| 126 | class TestErrorDatabase: |
nothing calls this directly
no test coverage detected