diff options
Diffstat (limited to 'tests/scale.test')
-rw-r--r-- | tests/scale.test | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tests/scale.test b/tests/scale.test index ae36982..657f668 100644 --- a/tests/scale.test +++ b/tests/scale.test @@ -7,10 +7,7 @@ # All rights reserved. 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] +eval tcltest::configure $argv tcltest::loadTestedCommands # Create entries in the option database to be sure that geometry options @@ -79,7 +76,7 @@ foreach test { lindex [.s configure $name] 4 } [lindex $test 2] incr i - if {[lindex $test 3] != ""} { + if {[lindex $test 3] ne ""} { test scale-1.$i {configuration options} { list [catch {.s configure $name [lindex $test 3]} msg] $msg } [list 1 [lindex $test 4]] @@ -869,5 +866,5 @@ catch {destroy .s} option clear # cleanup -::tcltest::cleanupTests +cleanupTests return |