Skip to content

Commit

Permalink
Update wm.test
Browse files Browse the repository at this point in the history
Try moving wm-stackorder-2.3
  • Loading branch information
culler authored Oct 17, 2024
1 parent e9fe17b commit e664911
Showing 1 changed file with 13 additions and 13 deletions.
26 changes: 13 additions & 13 deletions tests/wm.test
Original file line number Diff line number Diff line change
Expand Up @@ -1427,6 +1427,19 @@ test wm-sizefrom-2.1 {setting and reading values} {
destroy .t

### wm stackorder ###
test wm-stackorder-2.3 {stacking order} -body {
toplevel .t
tkwait visibility .t
toplevel .t2
tkwait visibility .t2
raise .
raiseDelay
raise .t2
raiseDelay
wm stackorder .
} -cleanup {
destroy .t .t2
} -result {.t . .t2}
test wm-stackorder-1.1 {usage} -returnCodes error -body {
wm stackorder
} -result {wrong # args: should be "wm option window ?arg ...?"}
Expand Down Expand Up @@ -1503,19 +1516,6 @@ test wm-stackorder-2.2 {stacking order} -body {
} -cleanup {
destroy .t
} -result {.t .}
test wm-stackorder-2.3 {stacking order} -body {
toplevel .t
tkwait visibility .t
toplevel .t2
tkwait visibility .t2
raise .
raiseDelay
raise .t2
raiseDelay
wm stackorder .
} -cleanup {
destroy .t .t2
} -result {.t . .t2}
test wm-stackorder-2.4 {stacking order} -body {
toplevel .t ; update
toplevel .t2 ; update
Expand Down

0 comments on commit e664911

Please sign in to comment.