diff options
author | dgp <dgp@noemail.net> | 2002-07-14 05:48:45 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2002-07-14 05:48:45 (GMT) |
commit | 4c1656ba1ffc46714225f3398cd9f1ca89c847c2 (patch) | |
tree | 506cf7b5383406d4969854b8209566f9c0b690c6 /tests/canvWind.test | |
parent | 701540fb99eaeea087e645b17d7b77ff54d494db (diff) | |
download | tk-4c1656ba1ffc46714225f3398cd9f1ca89c847c2.zip tk-4c1656ba1ffc46714225f3398cd9f1ca89c847c2.tar.gz tk-4c1656ba1ffc46714225f3398cd9f1ca89c847c2.tar.bz2 |
* Completed conversion of Tk test suite to use tcltest.
FossilOrigin-Name: c483179b915e863450b867189ddfab962971936a
Diffstat (limited to 'tests/canvWind.test')
-rw-r--r-- | tests/canvWind.test | 19 |
1 files changed, 8 insertions, 11 deletions
diff --git a/tests/canvWind.test b/tests/canvWind.test index 76db55c..e8077cb 100644 --- a/tests/canvWind.test +++ b/tests/canvWind.test @@ -6,17 +6,14 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: canvWind.test,v 1.3 1999/04/16 01:51:35 stanton Exp $ - -if {[lsearch [namespace children] ::tcltest] == -1} { - source [file join [pwd] [file dirname [info script]] defs.tcl] -} - -foreach i [winfo children .] { - destroy $i -} -wm geometry . {} -raise . +# RCS: @(#) $Id: canvWind.test,v 1.4 2002/07/14 05:48:46 dgp Exp $ + +package require tcltest 2.1 +namespace import -force tcltest::configure +namespace import -force tcltest::testsDirectory +configure -testdir [file join [pwd] [file dirname [info script]]] +configure -loadfile [file join [testsDirectory] constraints.tcl] +tcltest::loadTestedCommands test canvWind-1.1 {DisplayWinItem, windows off-screen vertically} { catch {destroy .t} |