summaryrefslogtreecommitdiffstats
path: root/tests/namespace.test
diff options
context:
space:
mode:
authorMiguel Sofer <miguel.sofer@gmail.com>2001-04-07 02:08:05 (GMT)
committerMiguel Sofer <miguel.sofer@gmail.com>2001-04-07 02:08:05 (GMT)
commitf4aae297ab93a93609f6e467d30b0e022440daab (patch)
tree27e01be7c5657ec2023a9068839d964791e9e29d /tests/namespace.test
parent9777db5094c42eabbad41300b9a61e15b1998aae (diff)
downloadtcl-f4aae297ab93a93609f6e467d30b0e022440daab.zip
tcl-f4aae297ab93a93609f6e467d30b0e022440daab.tar.gz
tcl-f4aae297ab93a93609f6e467d30b0e022440daab.tar.bz2
Corrected behaviour of [namespace code] (bug #219385, patch #403530)
Diffstat (limited to 'tests/namespace.test')
-rw-r--r--tests/namespace.test17
1 files changed, 14 insertions, 3 deletions
diff --git a/tests/namespace.test b/tests/namespace.test
index da884eb..234f90b 100644
--- a/tests/namespace.test
+++ b/tests/namespace.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: namespace.test,v 1.13 2000/05/11 00:17:29 hobbs Exp $
+# RCS: @(#) $Id: namespace.test,v 1.14 2001/04/07 02:12:30 msofer Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -694,12 +694,23 @@ test namespace-22.3 {NamespaceCodeCmd, arg is already scoped value} {
} {namespace inscope ::test_ns_1 cmd}
test namespace-22.4 {NamespaceCodeCmd, in :: namespace} {
namespace code unknown
-} {namespace inscope :: unknown}
+} {::namespace inscope :: unknown}
test namespace-22.5 {NamespaceCodeCmd, in other namespace} {
namespace eval test_ns_1 {
namespace code cmd
}
-} {namespace inscope ::test_ns_1 cmd}
+} {::namespace inscope ::test_ns_1 cmd}
+test namespace-22.6 {NamespaceCodeCmd, in other namespace} {
+ namespace eval test_ns_1 {
+ variable v 42
+ }
+ namespace eval test_ns_2 {
+ proc namespace args {}
+ }
+ namespace eval test_ns_2 [namespace eval test_ns_1 {
+ namespace code {set v}
+ }]
+} {42}
test namespace-23.1 {NamespaceCurrentCmd, bad args} {
catch {eval namespace delete [namespace children :: test_ns_*]}