diff options
author | redman <redman> | 1999-07-22 02:15:44 (GMT) |
---|---|---|
committer | redman <redman> | 1999-07-22 02:15:44 (GMT) |
commit | 41b1b6389d0f6a7a65410e66d85f909e6f855148 (patch) | |
tree | 487a02144710fcc9e56ddb53b563220ee358c8ac /tests | |
parent | 42dc6740de7cbdbcc0930226d7c35f11fc8f051d (diff) | |
download | tcl-41b1b6389d0f6a7a65410e66d85f909e6f855148.zip tcl-41b1b6389d0f6a7a65410e66d85f909e6f855148.tar.gz tcl-41b1b6389d0f6a7a65410e66d85f909e6f855148.tar.bz2 |
Applied patch for info complete. [Bug: 2382]
Diffstat (limited to 'tests')
-rw-r--r-- | tests/info.test | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/tests/info.test b/tests/info.test index cd90144..d4fc961 100644 --- a/tests/info.test +++ b/tests/info.test @@ -11,7 +11,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: info.test,v 1.8 1999/06/26 03:54:15 jenn Exp $ +# RCS: @(#) $Id: info.test,v 1.9 1999/07/22 02:15:45 redman Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -134,6 +134,12 @@ test info-5.2 {info complete option} { test info-5.3 {info complete option} { info complete {# Comment should be complete command} } 1 +test info-5.4 {info complete option} { + info complete {[a [b]} +} 0 +test info-5.5 {info complete option} { + info complete {[a [b] } +} 0 test info-6.1 {info default option} { proc t1 {a b {c d} {e "long default value"}} {} |