Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
C
cpython
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
cpython
Commits
bbb7efd7
Commit
bbb7efd7
authored
Feb 09, 2009
by
Guilherme Polo
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Some tests for Tkinter.Text.search
parent
94034ea5
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
68 additions
and
0 deletions
+68
-0
Lib/lib-tk/test/test_tkinter/__init__.py
Lib/lib-tk/test/test_tkinter/__init__.py
+0
-0
Lib/lib-tk/test/test_tkinter/test_text.py
Lib/lib-tk/test/test_tkinter/test_text.py
+39
-0
Lib/test/regrtest.py
Lib/test/regrtest.py
+4
-0
Lib/test/test_tk.py
Lib/test/test_tk.py
+25
-0
No files found.
Lib/lib-tk/test/test_tkinter/__init__.py
0 → 100644
View file @
bbb7efd7
Lib/lib-tk/test/test_tkinter/test_text.py
0 → 100644
View file @
bbb7efd7
import
unittest
import
Tkinter
from
test.test_support
import
requires
,
run_unittest
from
ttk
import
setup_master
requires
(
'gui'
)
class
TextTest
(
unittest
.
TestCase
):
def
setUp
(
self
):
self
.
root
=
setup_master
()
self
.
text
=
Tkinter
.
Text
(
self
.
root
)
def
tearDown
(
self
):
self
.
text
.
destroy
()
def
test_search
(
self
):
text
=
self
.
text
# pattern and index are obligatory arguments.
self
.
failUnlessRaises
(
Tkinter
.
TclError
,
text
.
search
,
None
,
'1.0'
)
self
.
failUnlessRaises
(
Tkinter
.
TclError
,
text
.
search
,
'a'
,
None
)
self
.
failUnlessRaises
(
Tkinter
.
TclError
,
text
.
search
,
None
,
None
)
# Invalid text index.
self
.
failUnlessRaises
(
Tkinter
.
TclError
,
text
.
search
,
''
,
0
)
# Check if we are getting the indices as strings -- you are likely
# to get Tcl_Obj under Tk 8.5 if Tkinter doesn't convert it.
text
.
insert
(
'1.0'
,
'hi-test'
)
self
.
failUnlessEqual
(
text
.
search
(
'-test'
,
'1.0'
,
'end'
),
'1.2'
)
self
.
failUnlessEqual
(
text
.
search
(
'test'
,
'1.0'
,
'end'
),
'1.3'
)
tests_gui
=
(
TextTest
,
)
if
__name__
==
"__main__"
:
run_unittest
(
*
tests_gui
)
Lib/test/regrtest.py
View file @
bbb7efd7
...
...
@@ -1047,6 +1047,7 @@ _expectations = {
test_socket_ssl
test_socketserver
test_tcl
test_tk
test_ttk_guionly
test_ttk_textonly
test_timeout
...
...
@@ -1066,6 +1067,7 @@ _expectations = {
test_kqueue
test_ossaudiodev
test_tcl
test_tk
test_ttk_guionly
test_ttk_textonly
test_zipimport
...
...
@@ -1084,6 +1086,7 @@ _expectations = {
test_ossaudiodev
test_pep277
test_tcl
test_tk
test_ttk_guionly
test_ttk_textonly
test_multiprocessing
...
...
@@ -1102,6 +1105,7 @@ _expectations = {
test_ossaudiodev
test_pep277
test_tcl
test_tk
test_ttk_guionly
test_ttk_textonly
test_multiprocessing
...
...
Lib/test/test_tk.py
0 → 100644
View file @
bbb7efd7
import
os
import
sys
from
_tkinter
import
TclError
from
test
import
test_support
this_dir
=
os
.
path
.
dirname
(
os
.
path
.
abspath
(
__file__
))
lib_tk_test
=
os
.
path
.
abspath
(
os
.
path
.
join
(
this_dir
,
os
.
path
.
pardir
,
'lib-tk'
,
'test'
))
if
lib_tk_test
not
in
sys
.
path
:
sys
.
path
.
append
(
lib_tk_test
)
import
runtktests
def
test_main
(
enable_gui
=
False
):
if
enable_gui
:
if
test_support
.
use_resources
is
None
:
test_support
.
use_resources
=
[
'gui'
]
elif
'gui'
not
in
test_support
.
use_resources
:
test_support
.
use_resources
.
append
(
'gui'
)
test_support
.
run_unittest
(
*
runtktests
.
get_tests
(
text
=
False
,
packages
=
[
'test_tkinter'
]))
if
__name__
==
'__main__'
:
test_main
(
enable_gui
=
True
)
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment