diff options
author | dgp <dgp@users.sourceforge.net> | 2005-07-05 17:27:06 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2005-07-05 17:27:06 (GMT) |
commit | bf7695058ddedaee83cf8f2386277dded31a5260 (patch) | |
tree | cef3768290a51e324c8309559e41773898412085 /tests/namespace.test | |
parent | e539042615457f25e32cc481db82a48146b76495 (diff) | |
download | tcl-bf7695058ddedaee83cf8f2386277dded31a5260.zip tcl-bf7695058ddedaee83cf8f2386277dded31a5260.tar.gz tcl-bf7695058ddedaee83cf8f2386277dded31a5260.tar.bz2 |
* generic/tclNamesp.c: Allow for [namespace import] of a command
* tests/namespace.test: over a previous [namespace import] of itself
without throwing an error. [RFE 1230597]
Diffstat (limited to 'tests/namespace.test')
-rw-r--r-- | tests/namespace.test | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index 096af88..311f3af 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.21.2.5 2004/10/28 00:01:11 dgp Exp $ +# RCS: @(#) $Id: namespace.test,v 1.21.2.6 2005/07/05 17:27:09 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -244,7 +244,7 @@ test namespace-9.4 {Tcl_Import, simple import} { } {cmd1: 123} test namespace-9.5 {Tcl_Import, can't redefine cmd unless allowOverwrite!=0} { list [catch {namespace eval test_ns_import {namespace import ::test_ns_export::*}} msg] $msg -} {1 {can't import command "cmd1": already exists}} +} {0 {}} test namespace-9.6 {Tcl_Import, cmd redefinition ok if allowOverwrite!=0} { namespace eval test_ns_import { namespace import -force ::test_ns_export::* |