Skip to content

Commit dc3ba51

Browse files
committed
testutils.test: correct numbering
1 parent 9efb254 commit dc3ba51

File tree

1 file changed

+10
-10
lines changed

1 file changed

+10
-10
lines changed

tests/testutils.test

+10-10
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@ assert {"testutils" in [info procs testutils]}
3131
#
3232
# Section 1: invalid invocations
3333
#
34-
test testutils-1.0 {invalid subcommand} -constraints testutils -body {
34+
test testutils-1.1 {invalid subcommand} -constraints testutils -body {
3535
testutils foo
3636
} -result {invalid subCmd "foo". Usage: testutils export|import|forget ?domain domain ...?} -returnCodes error
3737

@@ -78,11 +78,11 @@ set initVars [info vars]; lappend initVars initVars
7878
#
7979
# 2. Domain failures for forget and import
8080
#
81-
test testutils-2.0 {forget not-imported domain} -constraints testutils -body {
81+
test testutils-2.1 {forget not-imported domain} -constraints testutils -body {
8282
testutils forget _foo
8383
} -result {testutils domain "_foo" was not imported} -returnCodes error
8484

85-
test testutils-2.1 {duplicate import} -constraints testutils -body {
85+
test testutils-2.2 {duplicate import} -constraints testutils -body {
8686
testutils import _foo
8787
testutils import _foo
8888
} -result {testutils domain "_foo" was already imported} -returnCodes error -cleanup {
@@ -92,20 +92,20 @@ test testutils-2.1 {duplicate import} -constraints testutils -body {
9292
#
9393
# 3. Import procs
9494
#
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 {
9696
testutils import _foo
9797
expr {([info procs _kuk] eq "_kuk") && ([info procs init] eq "")}
9898
} -result 1 -cleanup {
9999
testutils forget _foo
100100
}
101101

102-
test testutils-3.1 {forget removes utility proc} -constraints testutils -body {
102+
test testutils-3.2 {forget removes utility proc} -constraints testutils -body {
103103
testutils import _foo
104104
testutils forget _foo
105105
info procs _kuk
106106
} -result {}
107107

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 {
109109
namespace eval ::_zez {
110110
proc _kuk {} {}
111111
}
@@ -120,7 +120,7 @@ test testutils-3.2 {import fails: proc already exists} -constraints testutils -s
120120
#
121121
# 4. Import variables
122122
#
123-
test testutils-4.0 {associated variables are imported} -constraints testutils -body {
123+
test testutils-4.1 {associated variables are imported} -constraints testutils -body {
124124
testutils import _foo
125125
set varNames [info vars]
126126
foreach name $initVars {
@@ -132,7 +132,7 @@ test testutils-4.0 {associated variables are imported} -constraints testutils -b
132132
testutils forget _foo
133133
}
134134

135-
test testutils-4.1 {
135+
test testutils-4.2 {
136136
Repeated initialization keeps imported variable defined without value non-existent,
137137
even if a test file inadvertently assigns it a value in the meantime.
138138
} -constraints testutils -body {
@@ -147,7 +147,7 @@ test testutils-4.1 {
147147
testutils forget _foo
148148
}
149149

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 {
151151
#
152152
# We need a pristine new namespace in which the variable _bar was never imported
153153
# and hence no upvar link for it exists.
@@ -163,7 +163,7 @@ test testutils-4.2 {import fails: variable already exists} -constraints testutil
163163
namespace delete ::_zez
164164
}
165165

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 {
167167
} -body {
168168
namespace eval ::_zez {
169169
testutils import _foo

0 commit comments

Comments
 (0)