summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogelnew1@free.fr <fvogel>2015-09-02 20:27:57 (GMT)
committerfvogelnew1@free.fr <fvogel>2015-09-02 20:27:57 (GMT)
commitdf3cb488331c0a7fe06fc998cbe4fde9ab6669ca (patch)
tree3f501420718292a5dc80fbb8556f73450fae9b03 /tests
parent8f4a1ccf2d7dd4819b46368bba2a2f00f0671b35 (diff)
downloadtk-df3cb488331c0a7fe06fc998cbe4fde9ab6669ca.zip
tk-df3cb488331c0a7fe06fc998cbe4fde9ab6669ca.tar.gz
tk-df3cb488331c0a7fe06fc998cbe4fde9ab6669ca.tar.bz2
Fixed bug [1581435fff] - Documented precedence order in the matching process of the index string
Diffstat (limited to 'tests')
-rw-r--r--tests/menu.test9
1 files changed, 7 insertions, 2 deletions
diff --git a/tests/menu.test b/tests/menu.test
index 3cb47c3..cfe00b9 100644
--- a/tests/menu.test
+++ b/tests/menu.test
@@ -754,8 +754,13 @@ test menu-3.41 {MenuWidgetCmd procedure, "index" option} {
catch {destroy .m1}
menu .m1
.m1 add command -label "test"
- list [catch {.m1 index "test"} msg] $msg [destroy .m1]
-} {0 1 {}}
+ .m1 add command -label "3"
+ .m1 add command -label "another label"
+ .m1 add command -label "end"
+ .m1 add command -label "3a"
+ .m1 add command -label "final entry"
+ list [.m1 index "test"] [.m1 index "3"] [.m1 index "3a"] [.m1 index "end"] [destroy .m1]
+} {1 3 5 6 {}}
test menu-3.42 {MenuWidgetCmd procedure, "insert" option} {
catch {destroy .m1}
menu .m1