diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2010-01-05 09:44:53 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2010-01-05 09:44:53 (GMT) |
commit | 02b87f7d0041b6568f9b59a7a1e0399887027a8e (patch) | |
tree | 6614253727e7042fe22d834df061463060456259 /tests/menu.test | |
parent | 78a5e8b596583e5334feb21d14214d909ab6343b (diff) | |
download | tk-02b87f7d0041b6568f9b59a7a1e0399887027a8e.zip tk-02b87f7d0041b6568f9b59a7a1e0399887027a8e.tar.gz tk-02b87f7d0041b6568f9b59a7a1e0399887027a8e.tar.bz2 |
[Bug 220950]: Don't delete the last menu entry when it is obvious that is not
what was intended.
Diffstat (limited to 'tests/menu.test')
-rw-r--r-- | tests/menu.test | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/tests/menu.test b/tests/menu.test index a34171c..0fd4113 100644 --- a/tests/menu.test +++ b/tests/menu.test @@ -5,7 +5,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: menu.test,v 1.20.4.2 2010/01/03 00:42:02 patthoyts Exp $ +# RCS: @(#) $Id: menu.test,v 1.20.4.3 2010/01/05 09:44:54 dkf Exp $ package require tcltest 2.1 eval tcltest::configure $argv @@ -681,6 +681,17 @@ test menu-3.29 {MenuWidgetCmd procedure, "delete" option} { .m1 activate 3 list [catch {.m1 delete 1} msg] $msg [destroy .m1] } {0 {} {}} +test menu-3.29+1 {MenuWidgetCmd, "delete", Bug 220950} -setup { + destroy .m1 +} -body { + menu .m1 + .m1 add command -label "bogus" + .m1 add command -label "ok" + .m1 delete 10 20 + .m1 entrycget last -label +} -cleanup { + destroy .m1 +} -result ok test menu-3.30 {MenuWidgetCmd procedure, "entrycget" option} { catch {destroy .m1} menu .m1 |