summaryrefslogtreecommitdiffstats
path: root/tests/namespace.test
diff options
context:
space:
mode:
authorhobbs <hobbs@noemail.net>2000-03-27 22:19:14 (GMT)
committerhobbs <hobbs@noemail.net>2000-03-27 22:19:14 (GMT)
commitf7980cfc202d708d1a31abf81576539ecddf63a3 (patch)
treeff9912e3334643b2e91d95a89f614c54af0433f4 /tests/namespace.test
parent960532563432053237cb563dc9175205b22f06ca (diff)
downloadtcl-f7980cfc202d708d1a31abf81576539ecddf63a3.zip
tcl-f7980cfc202d708d1a31abf81576539ecddf63a3.tar.gz
tcl-f7980cfc202d708d1a31abf81576539ecddf63a3.tar.bz2
* tests/httpd: removed unnecessary 'puts stderr "Post Dispatch"'
* tests/namespace.test: * generic/tclNamesp.c (Tcl_Export): added a uniq'ing test to the export list so only one instance of each export pattern would exist in the list. FossilOrigin-Name: 2188389346676c5831880161a1384ddee2407471
Diffstat (limited to 'tests/namespace.test')
-rw-r--r--tests/namespace.test6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/namespace.test b/tests/namespace.test
index dcc6671..7f855c9 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.9 2000/01/26 21:36:36 ericm Exp $
+# RCS: @(#) $Id: namespace.test,v 1.10 2000/03/27 22:19:14 hobbs Exp $
if {[lsearch [namespace children] ::tcltest] == -1} {
package require tcltest
@@ -803,11 +803,11 @@ test namespace-26.5 {NamespaceExportCmd, sequence of patterns, patterns accumula
}
list [info commands test_ns_2::*] [test_ns_2::cmd3 hello]
} {{::test_ns_2::cmd1 ::test_ns_2::cmd3} {cmd3: hello}}
-test namespace-26.6 {NamespaceExportCmd, no patterns means return export list} {
+test namespace-26.6 {NamespaceExportCmd, no patterns means return uniq'ed export list} {
namespace eval test_ns_1 {
namespace export
}
-} {cmd1 cmd1 cmd3}
+} {cmd1 cmd3}
test namespace-26.7 {NamespaceExportCmd, -clear resets export list} {
namespace eval test_ns_1 {
namespace export -clear cmd4