(self)
| 218 | raises=TypeError, reason="BaseSettings.update doesn't support kwargs input" |
| 219 | ) |
| 220 | def test_update_kwargs(self): |
| 221 | settings = BaseSettings({"key": 0}) |
| 222 | settings.update(key=1) # pylint: disable=unexpected-keyword-arg |
| 223 | |
| 224 | @pytest.mark.xfail( |
| 225 | raises=AttributeError, |
nothing calls this directly
no test coverage detected