diff options
author | dgp <dgp@users.sourceforge.net> | 2003-03-08 21:42:44 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2003-03-08 21:42:44 (GMT) |
commit | c09ed1fe7fb7b2cf744f47d658ba0c693d23f204 (patch) | |
tree | 13dbce8b70e35e90f58848d9dd40e6d954beec3d | |
parent | ccce3f52f073d161737f2868b97a80062c05e2d7 (diff) | |
download | tcl-c09ed1fe7fb7b2cf744f47d658ba0c693d23f204.zip tcl-c09ed1fe7fb7b2cf744f47d658ba0c693d23f204.tar.gz tcl-c09ed1fe7fb7b2cf744f47d658ba0c693d23f204.tar.bz2 |
* doc/tcltest.n: Added missing "-body" to example. Thanks to
Helmut Giese. [Bug 700011]
-rw-r--r-- | ChangeLog | 5 | ||||
-rw-r--r-- | doc/tcltest.n | 6 |
2 files changed, 8 insertions, 3 deletions
@@ -1,3 +1,8 @@ +2003-03-08 Don Porter <dgp@users.sourceforge.net> + + * doc/tcltest.n: Added missing "-body" to example. Thanks to + Helmut Giese. [Bug 700011] + 2003-03-07 Mo DeJong <mdejong@users.sourceforge.net> * tests/io.test: diff --git a/doc/tcltest.n b/doc/tcltest.n index c395823..2b66931 100644 --- a/doc/tcltest.n +++ b/doc/tcltest.n @@ -8,7 +8,7 @@ '\" See the file "license.terms" for information on usage and redistribution '\" of this file, and for a DISCLAIMER OF ALL WARRANTIES. '\" -'\" RCS: @(#) $Id: tcltest.n,v 1.38 2003/01/24 16:33:35 dgp Exp $ +'\" RCS: @(#) $Id: tcltest.n,v 1.39 2003/03/08 21:42:47 dgp Exp $ '\" .so man.macros .TH "tcltest" n 2.2 tcltest "Tcl Bundled Packages" @@ -976,10 +976,10 @@ namespace eval ::example::test { testConstraint X [expr {...}] variable SETUP {#common setup code} variable CLEANUP {#common cleanup code} - test example-1 {} -setup $SETUP { + test example-1 {} -setup $SETUP -body { # First test } -cleanup $CLEANUP -result {...} - test example-2 {} -constraints X -setup $SETUP { + test example-2 {} -constraints X -setup $SETUP -body { # Second test; constrained } -cleanup $CLEANUP -result {...} test example-3 {} { |