diff options
author | dgp <dgp@users.sourceforge.net> | 2004-05-25 18:58:02 (GMT) |
---|---|---|
committer | dgp <dgp@users.sourceforge.net> | 2004-05-25 18:58:02 (GMT) |
commit | 4063b631058e6432a5dc992ba0194458e9727f8b (patch) | |
tree | 1a227a5c5d3aedecf2031d5ef99187f6716805b5 /tests/namespace.test | |
parent | 7b34c540ec190b661e37418ef31a01ce24492fdb (diff) | |
download | tcl-4063b631058e6432a5dc992ba0194458e9727f8b.zip tcl-4063b631058e6432a5dc992ba0194458e9727f8b.tar.gz tcl-4063b631058e6432a5dc992ba0194458e9727f8b.tar.bz2 |
* tests/unload.test (unload-3.1): Verify [pkgb_sub] does not exist.
* tests/stringComp.test: stop re-use of string.test test names
* tests/regexpComp.test: stop re-use of regexp.test test names
* tests/namespace.test (namespace-46.3): Verify [p] does not exist.
Diffstat (limited to 'tests/namespace.test')
-rw-r--r-- | tests/namespace.test | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/tests/namespace.test b/tests/namespace.test index 7e82ccb..3193761 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.26 2004/05/23 22:53:21 msofer Exp $ +# RCS: @(#) $Id: namespace.test,v 1.27 2004/05/25 18:58:04 dgp Exp $ if {[lsearch [namespace children] ::tcltest] == -1} { package require tcltest 2 @@ -1488,6 +1488,7 @@ test namespace-46.3 {ensemble: implementation errors} { set result {} lappend result [catch { ns } msg] $msg ns a [ns b 10] + catch {rename p {}} rename ns p p a [p b 3000] lappend result $ns::count |