summaryrefslogtreecommitdiffstats
path: root/tests/packgrid.test
diff options
context:
space:
mode:
authorpspjuth <peter.spjuth@gmail.com>2009-09-18 22:35:00 (GMT)
committerpspjuth <peter.spjuth@gmail.com>2009-09-18 22:35:00 (GMT)
commitedff204f863b5527369a1ca046d40240fe45754d (patch)
tree9ddd43380dafb315f6433dbdd5f411d9fa1d7f79 /tests/packgrid.test
parent33e2ffcd22e3a6489550d76769c30cdaf2855466 (diff)
downloadtk-edff204f863b5527369a1ca046d40240fe45754d.zip
tk-edff204f863b5527369a1ca046d40240fe45754d.tar.gz
tk-edff204f863b5527369a1ca046d40240fe45754d.tar.bz2
Bug fix in grid/pack collision detect.
Faulty slave was not properly blocked from slave list. [Bug 2859912]
Diffstat (limited to 'tests/packgrid.test')
-rw-r--r--tests/packgrid.test32
1 files changed, 31 insertions, 1 deletions
diff --git a/tests/packgrid.test b/tests/packgrid.test
index cbbb6f0..66d4e4c 100644
--- a/tests/packgrid.test
+++ b/tests/packgrid.test
@@ -5,7 +5,7 @@
# Copyright (c) 2008 Peter Spjuth
# All rights reserved.
#
-# RCS: @(#) $Id: packgrid.test,v 1.1 2009/08/19 23:02:00 pspjuth Exp $
+# RCS: @(#) $Id: packgrid.test,v 1.2 2009/09/18 22:35:00 pspjuth Exp $
#
package require tcltest 2.2
@@ -97,6 +97,36 @@ test packgrid-1.6 {pack and grid in same master} -setup {
destroy .g
} -result {}
+test packgrid-1.7 {pack and grid in same master} -setup {
+ grid propagate . true
+ pack propagate . true
+ label .p -text PACK
+ label .g -text GRID
+} -body {
+ # Basic conflict should stop widget from being handled
+ grid .g
+ catch { pack .p }
+ pack slaves .
+} -cleanup {
+ destroy .p
+ destroy .g
+} -result {}
+
+test packgrid-1.8 {pack and grid in same master} -setup {
+ grid propagate . true
+ pack propagate . true
+ label .p -text PACK
+ label .g -text GRID
+} -body {
+ # Basic conflict should stop widget from being handled
+ pack .p
+ catch { grid .g }
+ grid slaves .
+} -cleanup {
+ destroy .p
+ destroy .g
+} -result {}
+
test packgrid-2.1 {pack and grid in same master, change propagation} -setup {
grid propagate . false
pack propagate . true