diff options
author | William Joye <wjoye@cfa.harvard.edu> | 2017-10-17 19:50:58 (GMT) |
---|---|---|
committer | William Joye <wjoye@cfa.harvard.edu> | 2017-10-17 19:50:58 (GMT) |
commit | 9b7a6c3507ea3383c60aaecb29f873c9b590ccca (patch) | |
tree | 82ce31ebd8f46803d969034f5aa3db8d7974493c /tk8.6/tests/ttk/image.test | |
parent | 87fca7325b97005eb44dcf3e198277640af66115 (diff) | |
download | blt-9b7a6c3507ea3383c60aaecb29f873c9b590ccca.zip blt-9b7a6c3507ea3383c60aaecb29f873c9b590ccca.tar.gz blt-9b7a6c3507ea3383c60aaecb29f873c9b590ccca.tar.bz2 |
rm tcl/tk 8.6.7
Diffstat (limited to 'tk8.6/tests/ttk/image.test')
-rw-r--r-- | tk8.6/tests/ttk/image.test | 50 |
1 files changed, 0 insertions, 50 deletions
diff --git a/tk8.6/tests/ttk/image.test b/tk8.6/tests/ttk/image.test deleted file mode 100644 index a55f7f8..0000000 --- a/tk8.6/tests/ttk/image.test +++ /dev/null @@ -1,50 +0,0 @@ -package require Tk 8.5 -package require tcltest ; namespace import -force tcltest::* -loadTestedCommands - -test image-1.1 "Bad image element" -body { - ttk::style element create BadImage image badimage -} -returnCodes error -result {image "badimage" doesn't exist} - -test image-1.2 "Duplicate element" -setup { - image create photo test.element -width 10 -height 10 - ttk::style element create testElement image test.element -} -body { - ttk::style element create testElement image test.element -} -returnCodes 1 -result "Duplicate element testElement" - -test image-2.0 "Deletion of displayed image (label)" -setup { - image create photo test.image -width 10 -height 10 -} -body { - pack [set w [ttk::label .ttk_image20 -image test.image]] - tkwait visibility $w - image delete test.image - update -} -cleanup { - destroy .ttk_image20 -} -result {} - -test image-2.1 "Deletion of displayed image (checkbutton)" -setup { - image create photo test.image -width 10 -height 10 -} -body { - pack [set w [ttk::checkbutton .ttk_image21 -image test.image]] - tkwait visibility $w - image delete test.image - update -} -cleanup { - destroy .ttk_image21 -} -result {} - -test image-2.2 "Deletion of displayed image (radiobutton)" -setup { - image create photo test.image -width 10 -height 10 -} -body { - pack [set w [ttk::radiobutton .ttk_image22 -image test.image]] - tkwait visibility $w - image delete test.image - update -} -cleanup { - destroy .ttk_image22 -} -result {} - -# -tcltest::cleanupTests |