diff options
Diffstat (limited to 'tests/string.test')
-rw-r--r-- | tests/string.test | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/tests/string.test b/tests/string.test index cc43191..a461a5e 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.54 2005/11/09 20:24:11 dgp Exp $ +# RCS: @(#) $Id: string.test,v 1.55 2005/12/19 19:03:17 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -661,6 +661,14 @@ test string-6.107 {string is integer, bad integers} { } set result } {1 1 0 0 0 1 0 0} +test string-6.108 {string is double, Bug 1382287} { + set x 2turtledoves + string is double $x + string is double $x +} 0 +test string-6.109 {string is double, Bug 1360532} { + string is double 1\u00a0 +} 0 catch {rename largest_int {}} |