diff options
author | pspjuth <peter.spjuth@gmail.com> | 2001-08-18 20:03:16 (GMT) |
---|---|---|
committer | pspjuth <peter.spjuth@gmail.com> | 2001-08-18 20:03:16 (GMT) |
commit | 7f3008ca65c1e1b6e1b5079bd1eb28794c9e02fb (patch) | |
tree | 08d8c782e9942c3828ce6daa40ba7de28cc34139 /tests | |
parent | decd44ff326c34186124c351c78af7dbb0bfd925 (diff) | |
download | tk-7f3008ca65c1e1b6e1b5079bd1eb28794c9e02fb.zip tk-7f3008ca65c1e1b6e1b5079bd1eb28794c9e02fb.tar.gz tk-7f3008ca65c1e1b6e1b5079bd1eb28794c9e02fb.tar.bz2 |
Grid configure rejected initial "x" and "^". [Bug #418664]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/grid.test | 18 |
1 files changed, 17 insertions, 1 deletions
diff --git a/tests/grid.test b/tests/grid.test index 75ead6e..7384748 100644 --- a/tests/grid.test +++ b/tests/grid.test @@ -5,7 +5,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: grid.test,v 1.9 2001/02/12 18:06:47 drh Exp $ +# RCS: @(#) $Id: grid.test,v 1.10 2001/08/18 20:03:17 pspjuth Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { source [file join [pwd] [file dirname [info script]] defs.tcl] @@ -68,6 +68,22 @@ test grid-1.6 {basic argument checking} { list [catch {grid x} msg] $msg } {1 {can't determine master window}} +test grid-1.7 {basic argument checking} { + list [catch {grid configure x} msg] $msg +} {1 {can't determine master window}} + +test grid-1.8 {basic argument checking} { + button .b + list [catch {grid x .b} msg] $msg +} {0 {}} +grid_reset 1.8 + +test grid-1.9 {basic argument checking} { + button .b + list [catch {grid configure x .b} msg] $msg +} {0 {}} +grid_reset 1.9 + test grid-2.1 {bbox} { list [catch {grid bbox .} msg] $msg } {0 {0 0 0 0}} |