__str__ and friends
(self)
| 502 | assert c["a_nest"]["an_egg"] |
| 503 | |
| 504 | def string_display(self): |
| 505 | "__str__ and friends" |
| 506 | config = Config(defaults={"foo": "bar"}) |
| 507 | assert repr(config) == "<Config: {'foo': 'bar'}>" |
| 508 | |
| 509 | def merging_does_not_wipe_user_modifications_or_deletions(self): |
| 510 | c = Config({"foo": {"bar": "biz"}, "error": True}) |