diff options
author | fvogel <fvogelnew1@free.fr> | 2019-04-07 08:54:46 (GMT) |
---|---|---|
committer | fvogel <fvogelnew1@free.fr> | 2019-04-07 08:54:46 (GMT) |
commit | b55c03bb23a82c579ecc2a5f74665e4f4bd2e937 (patch) | |
tree | 58cbc7de784686001f2737a43e5c4281bccd14c4 /tests/grid.test | |
parent | 735733f4486f003380329dab135b932ce9c8b24f (diff) | |
download | tk-b55c03bb23a82c579ecc2a5f74665e4f4bd2e937.zip tk-b55c03bb23a82c579ecc2a5f74665e4f4bd2e937.tar.gz tk-b55c03bb23a82c579ecc2a5f74665e4f4bd2e937.tar.bz2 |
Better test descriptions for the new tests in grid.test
Diffstat (limited to 'tests/grid.test')
-rw-r--r-- | tests/grid.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/grid.test b/tests/grid.test index e901a93..62474ff 100644 --- a/tests/grid.test +++ b/tests/grid.test @@ -193,13 +193,13 @@ test grid-3.9 {configure: basic argument checking} -body { } -cleanup { grid_reset 3.9 } -returnCodes error -result {invalid window shortcut, "y" should be '-', 'x', or '^'} -test grid-3.10 {configure: basic argument checking} -body { +test grid-3.10 {ConfigureSlave procedure, bad -in option} -body { frame .f grid .f -in .f } -cleanup { grid_reset 3.10 } -returnCodes error -result {window can't be managed in itself} -test grid-3.11 {configure: basic argument checking} -body { +test grid-3.11 {prevent management loops} -body { frame .f1 frame .f2 grid .f1 -in .f2 @@ -207,7 +207,7 @@ test grid-3.11 {configure: basic argument checking} -body { } -cleanup { grid_reset 3.11 } -returnCodes error -result {can't put .f2 inside .f1, would cause management loop} -test grid-3.12 {configure: basic argument checking} -body { +test grid-3.12 {prevent management loops} -body { frame .f1 frame .f2 frame .f3 |