summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2016-01-26 17:25:35 (GMT)
committerdgp <dgp@users.sourceforge.net>2016-01-26 17:25:35 (GMT)
commitd9bac150627c28d4fab62f85a2696cc87911946d (patch)
tree15ce3971ac5ea04574a175555768d99991edde18 /tests
parentf97f966abdb154039f603a3cb313d31e022a9a89 (diff)
parent48ef3bc66f0806a4b54f4abb9888a5fc53e78d33 (diff)
downloadtk-d9bac150627c28d4fab62f85a2696cc87911946d.zip
tk-d9bac150627c28d4fab62f85a2696cc87911946d.tar.gz
tk-d9bac150627c28d4fab62f85a2696cc87911946d.tar.bz2
merge 8.5
Diffstat (limited to 'tests')
-rw-r--r--tests/ttk/notebook.test21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ttk/notebook.test b/tests/ttk/notebook.test
index cdce020..3a2a6ff 100644
--- a/tests/ttk/notebook.test
+++ b/tests/ttk/notebook.test
@@ -468,6 +468,27 @@ test notebook-1817596-3 "insert/configure" -body {
} -result [list [list .nb.l2 .nb.l0 .nb.l1] L2 L0 L1] -cleanup { destroy .nb }
+test notebook-readd-1 "add same widget twice" -body {
+ pack [ttk::notebook .nb]
+ .nb add [ttk::button .nb.b1] -text "Button"
+ .nb add .nb.b1
+ .nb tabs
+} -result [list .nb.b1] -cleanup { destroy .nb }
+
+test notebook-readd-2 "add same widget twice, with options" -body {
+ pack [ttk::notebook .nb]
+ .nb add [ttk::button .nb.b1] -text "Tab label"
+ .nb add .nb.b1 -text "Changed tab label"
+ .nb tabs
+} -result [list .nb.b1] -cleanup { destroy .nb }
+
+test notebook-readd-3 "insert same widget twice, with options" -body {
+ pack [ttk::notebook .nb]
+ .nb insert end [ttk::button .nb.b1] -text "Tab label"
+ .nb insert end .nb.b1 -text "Changed tab label"
+ .nb tabs
+} -result [list .nb.b1] -cleanup { destroy .nb }
+
# See #1343984
test notebook-1343984-1 "don't autoselect on destroy - setup" -body {