summaryrefslogtreecommitdiffstats
path: root/tests/ttk
diff options
context:
space:
mode:
authorjan.nijtmans <nijtmans@users.sourceforge.net>2024-01-28 10:39:48 (GMT)
committerjan.nijtmans <nijtmans@users.sourceforge.net>2024-01-28 10:39:48 (GMT)
commit64ef8f9af569b1fd6d2dc992851976042391fa72 (patch)
treeea93e2bffc68bd502b3b5df10b9781593f09f74c /tests/ttk
parent748f5f9a656f5a308c1296c9217e47cb4fbe9db7 (diff)
parent51207189cfe8425541a9fd8eb18ca2aaf96b5e2e (diff)
downloadtk-64ef8f9af569b1fd6d2dc992851976042391fa72.zip
tk-64ef8f9af569b1fd6d2dc992851976042391fa72.tar.gz
tk-64ef8f9af569b1fd6d2dc992851976042391fa72.tar.bz2
Merge 8.6
Diffstat (limited to 'tests/ttk')
-rw-r--r--tests/ttk/spinbox.test21
1 files changed, 21 insertions, 0 deletions
diff --git a/tests/ttk/spinbox.test b/tests/ttk/spinbox.test
index e2b91f6..1f32049 100644
--- a/tests/ttk/spinbox.test
+++ b/tests/ttk/spinbox.test
@@ -287,6 +287,27 @@ test spinbox-4.2 "Increment with duplicates in -values, no wrap" -setup {
unset -nocomplain ::spinbox_test max
} -result {one two three 4 5 two six six six two 5 4 three two one one one one}
+test spinbox-11.2 {Bugs [2a32225cd1] and [9fa3e08243]} -setup {
+ destroy .s
+ pack [ttk::spinbox .s]
+ update
+ set res {}
+} -body {
+ .s insert end "A sample text"
+ .s icursor end
+ event generate .s <<PrevWord>> ; # shall move insert to index 9
+ .s delete insert end
+ lappend res [.s get]
+ .s delete 0 end
+ .s insert end "A sample text"
+ .s icursor 2
+ event generate .s <<NextWord>> ; # shall move insert to index 9
+ .s delete 0 insert
+ lappend res [.s get]
+} -cleanup {
+ destroy .s
+} -result {{A sample } text}
+
# nostomp: NB intentional difference between ttk::spinbox and tk::spinbox;
# see also #1439266