diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-31 16:43:27 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2004-10-31 16:43:27 (GMT) |
commit | 22042ac17d28b7e80420612e880f6f4e3130db65 (patch) | |
tree | 6a344203c055c89c6bc0cb214b92128c1f8c2d60 /tests/info.test | |
parent | c29a0584716dc23c315d6fbaf3c578e5aef6412c (diff) | |
download | tcl-22042ac17d28b7e80420612e880f6f4e3130db65.zip tcl-22042ac17d28b7e80420612e880f6f4e3130db65.tar.gz tcl-22042ac17d28b7e80420612e880f6f4e3130db65.tar.bz2 |
Make [info globals ::foo] work. [Bug 1057461]
Diffstat (limited to 'tests/info.test')
-rw-r--r-- | tests/info.test | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/tests/info.test b/tests/info.test index 715f9ae..27e6edc 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.24.2.1 2003/03/27 13:11:14 dkf Exp $ +# RCS: @(#) $Id: info.test,v 1.24.2.2 2004/10/31 16:43:30 dkf Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest @@ -291,6 +291,10 @@ test info-8.2 {info globals option} { test info-8.3 {info globals option} { list [catch {info globals 1 2} msg] $msg } {1 {wrong # args: should be "info globals ?pattern?"}} +test info-8.4 {info globals option: may have leading namespace qualifiers} { + set x 0 + list [info globals x] [info globals :x] [info globals ::x] [info globals :::x] [info globals ::::x] +} {x {} x x x} test info-9.1 {info level option} { info level |