summaryrefslogtreecommitdiffstats
path: root/tests
diff options
context:
space:
mode:
authorfvogel <fvogelnew1@free.fr>2016-05-12 20:37:11 (GMT)
committerfvogel <fvogelnew1@free.fr>2016-05-12 20:37:11 (GMT)
commit561dec77f0234df7380ae28f6c22e386ba08d63b (patch)
tree65c75a4182e66104c2b9536457a626fbcf32f1e2 /tests
parenta1fa144f468ecc214ff241aa6c61d2dbee1e3f82 (diff)
downloadtk-561dec77f0234df7380ae28f6c22e386ba08d63b.zip
tk-561dec77f0234df7380ae28f6c22e386ba08d63b.tar.gz
tk-561dec77f0234df7380ae28f6c22e386ba08d63b.tar.bz2
Tests for [.t edit canundo/canredo]
Diffstat (limited to 'tests')
-rw-r--r--tests/text.test28
1 files changed, 27 insertions, 1 deletions
diff --git a/tests/text.test b/tests/text.test
index f217bcf..9be243d 100644
--- a/tests/text.test
+++ b/tests/text.test
@@ -6207,7 +6207,7 @@ test text-27.2 {TextEditCmd procedure, argument parsing} -body {
.t edit gorp
} -cleanup {
destroy .t
-} -returnCodes {error} -result {bad edit option "gorp": must be modified, redo, reset, separator, or undo}
+} -returnCodes {error} -result {bad edit option "gorp": must be canundo, canredo, modified, redo, reset, separator, or undo}
test text-27.3 {TextEditUndo procedure, undoing changes} -body {
text .t -undo 1
pack .t
@@ -6494,6 +6494,32 @@ test text-27.22 {patch 1669632 (v) - <<Clear>> is atomic} -setup {
} -cleanup {
destroy .top.t .top
} -result "This A an example text"
+test text-27.24 {TextEditCmd procedure, canundo and canredo} -setup {
+ destroy .t
+ set res {}
+} -body {
+ text .t -undo false -autoseparators false
+ lappend res [.t edit canundo] [.t edit canredo]
+ .t configure -undo true
+ lappend res [.t edit canundo] [.t edit canredo]
+ .t insert end "DO\n"
+ .t edit separator
+ .t insert end "IT\n"
+ .t insert end "YOURSELF\n"
+ .t edit separator
+ lappend res [.t edit canundo] [.t edit canredo]
+ .t edit undo
+ lappend res [.t edit canundo] [.t edit canredo]
+ .t configure -undo false
+ lappend res [.t edit canundo] [.t edit canredo]
+ .t configure -undo true
+ lappend res [.t edit canundo] [.t edit canredo]
+ .t edit redo
+ lappend res [.t edit canundo] [.t edit canredo]
+} -cleanup {
+ destroy .t
+} -result {0 0 0 0 1 0 1 1 0 0 1 1 1 0}
+
test text-28.1 {bug fix - 624372, ControlUtfProc long lines} -body {
pack [text .t -wrap none]