diff options
author | hobbs <hobbs> | 2003-02-09 07:48:22 (GMT) |
---|---|---|
committer | hobbs <hobbs> | 2003-02-09 07:48:22 (GMT) |
commit | 7cbbdcb1ea458bfaaa68bb1fc0cdb9351d11ab7c (patch) | |
tree | c6933d15bed38ac3ee37519fe2b9700aeee30333 /tests/canvRect.test | |
parent | 5181ceda950c495e8e4bfc881184539c9c5313d9 (diff) | |
download | tk-7cbbdcb1ea458bfaaa68bb1fc0cdb9351d11ab7c.zip tk-7cbbdcb1ea458bfaaa68bb1fc0cdb9351d11ab7c.tar.gz tk-7cbbdcb1ea458bfaaa68bb1fc0cdb9351d11ab7c.tar.bz2 |
* generic/tkCanvArc.c (CreateArc): Rework canvas create item
* generic/tkCanvBmap.c (CreateBitmap): type coords handling to be
* generic/tkCanvImg.c (CreateImage): consistent across types
* generic/tkCanvPoly.c (CreatePolygon): and not pass empty coords
* generic/tkCanvLine.c (CreateLine): to item creation procs.
* generic/tkCanvText.c (CreateText):
* generic/tkCanvWind.c (CreateWinItem):
* generic/tkCanvas.c (CanvasWidgetCmd CANV_CREATE):
* generic/tkRectOval.c (CreateRectOval):
* tests/canvRect.test:
* tests/canvText.test:
* tests/canvas.test:
Diffstat (limited to 'tests/canvRect.test')
-rw-r--r-- | tests/canvRect.test | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/canvRect.test b/tests/canvRect.test index a08679d..fafbb17 100644 --- a/tests/canvRect.test +++ b/tests/canvRect.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: canvRect.test,v 1.5 2002/07/14 05:48:46 dgp Exp $ +# RCS: @(#) $Id: canvRect.test,v 1.6 2003/02/09 07:48:22 hobbs Exp $ package require tcltest 2.1 namespace import -force tcltest::configure @@ -51,10 +51,10 @@ test canvRect-1.$i {configuration options} { test canvRect-2.1 {CreateRectOval procedure} { list [catch {.c create rect} msg] $msg -} {1 {wrong # args: should be ".c create rectangle x1 y1 x2 y2 ?options?"}} +} {1 {wrong # args: should be ".c create rect coords ?arg arg ...?"}} test canvRect-2.2 {CreateRectOval procedure} { list [catch {.c create oval x y z} msg] $msg -} {1 {wrong # args: should be ".c create oval x1 y1 x2 y2 ?options?"}} +} {1 {wrong # coordinates: expected 0 or 4, got 3}} test canvRect-2.3 {CreateRectOval procedure} { list [catch {.c create rectangle x 2 3 4} msg] $msg } {1 {bad screen distance "x"}} |