diff options
author | dgp <dgp@noemail.net> | 2005-04-22 16:18:25 (GMT) |
---|---|---|
committer | dgp <dgp@noemail.net> | 2005-04-22 16:18:25 (GMT) |
commit | a47812dd72dbbd006ef751505d6c1355c84648ab (patch) | |
tree | e279c572db1d53994827ee7b4742ddf526362680 /tests/string.test | |
parent | 8aaf27697cddb1acfa6b57749ac9570cb0d41c28 (diff) | |
download | tcl-a47812dd72dbbd006ef751505d6c1355c84648ab.zip tcl-a47812dd72dbbd006ef751505d6c1355c84648ab.tar.gz tcl-a47812dd72dbbd006ef751505d6c1355c84648ab.tar.bz2 |
* tests/string.test: Test string-23.0 for Bug 1187123.
FossilOrigin-Name: 8dc78c8b5584d9d4c06dc6a01e989d50951f31c5
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/tests/string.test b/tests/string.test index c715603..4a32e42 100644 --- a/tests/string.test +++ b/tests/string.test @@ -12,7 +12,7 @@ # See the file "license.terms" for information on usage and redistribution # of this file, and for a DISCLAIMER OF ALL WARRANTIES. # -# RCS: @(#) $Id: string.test,v 1.43 2004/10/28 00:04:39 dgp Exp $ +# RCS: @(#) $Id: string.test,v 1.44 2005/04/22 16:18:30 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -22,6 +22,7 @@ if {[lsearch [namespace children] ::tcltest] == -1} { # Some tests require the testobj command testConstraint testobj [expr {[info commands testobj] != {}}] +testConstraint testindexobj [expr {[info commands testindexobj] != {}}] test string-1.1 {error conditions} { list [catch {string gorp a b} msg] $msg @@ -1388,6 +1389,12 @@ test string-22.13 {string wordstart, unicode} { string wordstart "\uc700\uc700 abc" 8 } 3 +test string-23.0 {string is boolean, Bug 1187123} testindexobj { + set x 5 + catch {testindexobj $x foo} + string is boolean $x +} 0 + # cleanup ::tcltest::cleanupTests return |