diff options
author | dkf <donal.k.fellows@manchester.ac.uk> | 2009-10-22 21:36:24 (GMT) |
---|---|---|
committer | dkf <donal.k.fellows@manchester.ac.uk> | 2009-10-22 21:36:24 (GMT) |
commit | 1c3b7359656edd8a158c3056d26d732e01c34994 (patch) | |
tree | 96ad00b3aa3cde150762ffef6a0c8c8897350b33 /tests/text.test | |
parent | 73bb161d56a49cf21d50dc11576fb42c2da880f8 (diff) | |
download | tk-1c3b7359656edd8a158c3056d26d732e01c34994.zip tk-1c3b7359656edd8a158c3056d26d732e01c34994.tar.gz tk-1c3b7359656edd8a158c3056d26d732e01c34994.tar.bz2 |
Apply (slight cleaner, tested) version of [Patch 1469210].
Diffstat (limited to 'tests/text.test')
-rw-r--r-- | tests/text.test | 15 |
1 files changed, 13 insertions, 2 deletions
diff --git a/tests/text.test b/tests/text.test index 8fd077d..5d3060a 100644 --- a/tests/text.test +++ b/tests/text.test @@ -6,7 +6,7 @@ # Copyright (c) 1998-1999 by Scriptics Corporation. # All rights reserved. # -# RCS: @(#) $Id: text.test,v 1.54 2008/12/19 15:33:40 dgp Exp $ +# RCS: @(#) $Id: text.test,v 1.55 2009/10/22 21:36:24 dkf Exp $ package require tcltest 2.2 eval tcltest::configure $argv @@ -6079,7 +6079,18 @@ test text-27.17 {bug fix 1536735 - undo with empty text} -body { } -cleanup { destroy .t } -result {0 0 1 0} - +test text-27.18 {patch 1469210 - inserting after undo} -setup { + destroy .t +} -body { + text .t -undo 1 + .t insert end foo + .t edit modified 0 + .t edit undo + .t insert end bar + .t edit modified +} -cleanup { + destroy .t +} -result 1 test text-28.1 {bug fix - 624372, ControlUtfProc long lines} -body { pack [text .t -wrap none] |