(self)
| 226 | reason="BaseSettings.update doesn't support iterable input", |
| 227 | ) |
| 228 | def test_update_iterable(self): |
| 229 | settings = BaseSettings({"key": 0}) |
| 230 | settings.update([("key", 1)]) |
| 231 | |
| 232 | def test_update_jsonstring(self): |
| 233 | settings = BaseSettings({"number": 0, "dict": BaseSettings({"key": "val"})}) |
nothing calls this directly
no test coverage detected