diff options
Diffstat (limited to 'tests')
-rw-r--r-- | tests/text.test | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/tests/text.test b/tests/text.test index c656446..6dc6999 100644 --- a/tests/text.test +++ b/tests/text.test @@ -5873,6 +5873,32 @@ test text-22.225 {TextSearchCmd, strict limits} -body { } -cleanup { destroy .t } -result {} +test text-22.226 {TextSearchCmd, search for the empty string} -body { + pack [text .t] + .t search "" 1.0 +} -cleanup { + destroy .t +} -result {1.0} +test text-22.227 {TextSearchCmd, search for the empty string} -body { + pack [text .t] + .t insert end "Searching for the\nempty string!" + .t search "" 2.5 +} -cleanup { + destroy .t +} -result {2.5} +test text-22.228 {TextSearchCmd, search all empty strings} -body { + pack [text .t] + .t search -all "" 1.0 +} -cleanup { + destroy .t +} -result {1.0} +test text-22.228 {TextSearchCmd, search all empty strings} -body { + pack [text .t] + .t insert end "Searching for the\nempty string!" + .t search -all "" 2.5 +} -cleanup { + destroy .t +} -result {2.5} test text-23.1 {TkTextGetTabs procedure} -setup { |