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
3a03d2ea
Commit
3a03d2ea
authored
Feb 15, 2013
by
Ezio Melotti
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
#17163: test_file now works with unittest test discovery. Patch by Zachary Ware.
parent
a90b7132
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
13 additions
and
14 deletions
+13
-14
Lib/test/test_file.py
Lib/test/test_file.py
+10
-14
Misc/NEWS
Misc/NEWS
+3
-0
No files found.
Lib/test/test_file.py
View file @
3a03d2ea
...
...
@@ -10,7 +10,7 @@ import _pyio as pyio
from
test.support
import
TESTFN
,
run_unittest
from
collections
import
UserList
class
AutoFileTests
(
unittest
.
TestCase
)
:
class
AutoFileTests
:
# file tests for which a test file is automatically set up
def
setUp
(
self
):
...
...
@@ -128,14 +128,14 @@ class AutoFileTests(unittest.TestCase):
def
testReadWhenWriting
(
self
):
self
.
assertRaises
(
IOError
,
self
.
f
.
read
)
class
CAutoFileTests
(
AutoFileTests
):
class
CAutoFileTests
(
AutoFileTests
,
unittest
.
TestCase
):
open
=
io
.
open
class
PyAutoFileTests
(
AutoFileTests
):
class
PyAutoFileTests
(
AutoFileTests
,
unittest
.
TestCase
):
open
=
staticmethod
(
pyio
.
open
)
class
OtherFileTests
(
unittest
.
TestCase
)
:
class
OtherFileTests
:
def
testModeStrings
(
self
):
# check invalid mode strings
...
...
@@ -322,22 +322,18 @@ class OtherFileTests(unittest.TestCase):
finally
:
os
.
unlink
(
TESTFN
)
class
COtherFileTests
(
OtherFileTests
):
class
COtherFileTests
(
OtherFileTests
,
unittest
.
TestCase
):
open
=
io
.
open
class
PyOtherFileTests
(
OtherFileTests
):
class
PyOtherFileTests
(
OtherFileTests
,
unittest
.
TestCase
):
open
=
staticmethod
(
pyio
.
open
)
def
te
st_main
():
def
te
arDownModule
():
# Historically, these tests have been sloppy about removing TESTFN.
# So get rid of it no matter what.
try
:
run_unittest
(
CAutoFileTests
,
PyAutoFileTests
,
COtherFileTests
,
PyOtherFileTests
)
finally
:
if
os
.
path
.
exists
(
TESTFN
):
os
.
unlink
(
TESTFN
)
if
os
.
path
.
exists
(
TESTFN
):
os
.
unlink
(
TESTFN
)
if
__name__
==
'__main__'
:
test_
main
()
unittest
.
main
()
Misc/NEWS
View file @
3a03d2ea
...
...
@@ -605,6 +605,9 @@ Tests
- Issue #15539: Added regression tests for Tools/scripts/pindent.py.
- Issue #17163: test_file now works with unittest test discovery.
Patch by Zachary Ware.
- Issue #16925: test_configparser now works with unittest test discovery.
Patch by Zachary Ware.
...
...
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