@@ -31,7 +31,7 @@ assert {"testutils" in [info procs testutils]}
31
31
#
32
32
# Section 1: invalid invocations
33
33
#
34
- test testutils-1.0 {invalid subcommand} -constraints testutils -body {
34
+ test testutils-1.1 {invalid subcommand} -constraints testutils -body {
35
35
testutils foo
36
36
} -result {invalid subCmd "foo". Usage: testutils export|import|forget ?domain domain ...?} -returnCodes error
37
37
@@ -78,11 +78,11 @@ set initVars [info vars]; lappend initVars initVars
78
78
#
79
79
# 2. Domain failures for forget and import
80
80
#
81
- test testutils-2.0 {forget not-imported domain} -constraints testutils -body {
81
+ test testutils-2.1 {forget not-imported domain} -constraints testutils -body {
82
82
testutils forget _foo
83
83
} -result {testutils domain "_foo" was not imported} -returnCodes error
84
84
85
- test testutils-2.1 {duplicate import} -constraints testutils -body {
85
+ test testutils-2.2 {duplicate import} -constraints testutils -body {
86
86
testutils import _foo
87
87
testutils import _foo
88
88
} -result {testutils domain "_foo" was already imported} -returnCodes error -cleanup {
@@ -92,20 +92,20 @@ test testutils-2.1 {duplicate import} -constraints testutils -body {
92
92
#
93
93
# 3. Import procs
94
94
#
95
- test testutils-3.0 {utility proc is imported and init proc is not} -constraints testutils -body {
95
+ test testutils-3.1 {utility proc is imported and init proc is not} -constraints testutils -body {
96
96
testutils import _foo
97
97
expr {([info procs _kuk] eq "_kuk") && ([info procs init] eq "")}
98
98
} -result 1 -cleanup {
99
99
testutils forget _foo
100
100
}
101
101
102
- test testutils-3.1 {forget removes utility proc} -constraints testutils -body {
102
+ test testutils-3.2 {forget removes utility proc} -constraints testutils -body {
103
103
testutils import _foo
104
104
testutils forget _foo
105
105
info procs _kuk
106
106
} -result {}
107
107
108
- test testutils-3.2 {import fails: proc already exists} -constraints testutils -setup {
108
+ test testutils-3.3 {import fails: proc already exists} -constraints testutils -setup {
109
109
namespace eval ::_zez {
110
110
proc _kuk {} {}
111
111
}
@@ -120,7 +120,7 @@ test testutils-3.2 {import fails: proc already exists} -constraints testutils -s
120
120
#
121
121
# 4. Import variables
122
122
#
123
- test testutils-4.0 {associated variables are imported} -constraints testutils -body {
123
+ test testutils-4.1 {associated variables are imported} -constraints testutils -body {
124
124
testutils import _foo
125
125
set varNames [info vars]
126
126
foreach name $initVars {
@@ -132,7 +132,7 @@ test testutils-4.0 {associated variables are imported} -constraints testutils -b
132
132
testutils forget _foo
133
133
}
134
134
135
- test testutils-4.1 {
135
+ test testutils-4.2 {
136
136
Repeated initialization keeps imported variable defined without value non-existent,
137
137
even if a test file inadvertently assigns it a value in the meantime.
138
138
} -constraints testutils -body {
@@ -147,7 +147,7 @@ test testutils-4.1 {
147
147
testutils forget _foo
148
148
}
149
149
150
- test testutils-4.2 {import fails: variable already exists} -constraints testutils -setup {
150
+ test testutils-4.3 {import fails: variable already exists} -constraints testutils -setup {
151
151
#
152
152
# We need a pristine new namespace in which the variable _bar was never imported
153
153
# and hence no upvar link for it exists.
@@ -163,7 +163,7 @@ test testutils-4.2 {import fails: variable already exists} -constraints testutil
163
163
namespace delete ::_zez
164
164
}
165
165
166
- test testutils-4.3 {repeated creation/deletion of requesting namespace doesn't fool testutils} -constraints testutils -setup {
166
+ test testutils-4.4 {repeated creation/deletion of requesting namespace doesn't fool testutils} -constraints testutils -setup {
167
167
} -body {
168
168
namespace eval ::_zez {
169
169
testutils import _foo
0 commit comments