(self)
| 509 | test_keys = None |
| 510 | |
| 511 | def tearDown(self): |
| 512 | cols, rows = self.root.grid_size() |
| 513 | for i in range(cols + 1): |
| 514 | self.root.grid_columnconfigure(i, weight=0, minsize=0, pad=0, uniform='') |
| 515 | for i in range(rows + 1): |
| 516 | self.root.grid_rowconfigure(i, weight=0, minsize=0, pad=0, uniform='') |
| 517 | self.root.grid_propagate(1) |
| 518 | self.root.grid_anchor('nw') |
| 519 | super().tearDown() |
| 520 | |
| 521 | def test_grid_configure(self): |
| 522 | b = tkinter.Button(self.root) |
nothing calls this directly
no test coverage detected