(self)
| 620 | self.task = Task(_func, name="task") |
| 621 | |
| 622 | def basic_set_and_get(self): |
| 623 | self.root.configure({"foo": "bar"}) |
| 624 | assert self.root.configuration() == {"foo": "bar"} |
| 625 | |
| 626 | def configure_performs_merging(self): |
| 627 | self.root.configure({"foo": "bar"}) |
nothing calls this directly
no test coverage detected