summaryrefslogtreecommitdiffstats
path: root/tests/pkg/samename.tcl
diff options
context:
space:
mode:
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
-}
-