MCPcopy Index your code
hub / github.com/python/cpython / test_configure_columns

Method test_configure_columns

Lib/test/test_ttk/test_widgets.py:1423–1429  ·  view source on GitHub ↗
(self)

Source from the content-addressed store, hash-verified

1421 return ttk.Treeview(self.root, **kwargs)
1422
1423 def test_configure_columns(self):
1424 widget = self.create()
1425 self.checkParam(widget, 'columns', 'a b c',
1426 expected=('a', 'b', 'c'))
1427 self.checkParam(widget, 'columns', ('a', 'b', 'c'))
1428 self.checkParam(widget, 'columns', '',
1429 expected=() if tk_version >= (8, 7) else '')
1430
1431 def test_configure_displaycolumns(self):
1432 widget = self.create()

Callers

nothing calls this directly

Calls 2

createMethod · 0.95
checkParamMethod · 0.80

Tested by

no test coverage detected