summaryrefslogtreecommitdiffstats
path: root/tests/pkg/samename.tcl
diff options
context:
space:
mode:
authordgp <dgp@users.sourceforge.net>2002-07-01 04:06:51 (GMT)
committerdgp <dgp@users.sourceforge.net>2002-07-01 04:06:51 (GMT)
commit21c2b3f94cc68e59ad5b480e23615818aca6c6e3 (patch)
tree598fe38989c6bb6e2a7fcdef06a31cce6335fe7d /tests/pkg/samename.tcl
parent9aa8e5b0df06c585ca9336eaea31fd6cde87d2f5 (diff)
downloadtcl-21c2b3f94cc68e59ad5b480e23615818aca6c6e3.zip
tcl-21c2b3f94cc68e59ad5b480e23615818aca6c6e3.tar.gz
tcl-21c2b3f94cc68e59ad5b480e23615818aca6c6e3.tar.bz2
* Updated auto_mkIndex tests to use
[makeFile] and [removeFile] so tests are done in [temporaryDirecotry] where write access is guaranteed.
Diffstat (limited to 'tests/pkg/samename.tcl')
-rw-r--r--tests/pkg/samename.tcl25
1 files changed, 0 insertions, 25 deletions
diff --git a/tests/pkg/samename.tcl b/tests/pkg/samename.tcl
deleted file mode 100644
index 8aa5080..0000000
--- a/tests/pkg/samename.tcl
+++ /dev/null
@@ -1,25 +0,0 @@
-package provide football 1.0
-
-namespace eval ::pro:: {
- #
- # export only public functions.
- #
- namespace export {[a-z]*}
-}
-namespace eval ::college:: {
- #
- # export only public functions.
- #
- namespace export {[a-z]*}
-}
-
-proc ::pro::team {} {
- puts "go packers!"
- return true
-}
-
-proc ::college::team {} {
- puts "go badgers!"
- return true
-}
-