This issue tracker has been migrated to GitHub, and is currently read-only.
For more information, see the GitHub FAQs in the Python's Developer Guide.

classification
Title: Duplicate test and missing class test in test_abc.py
Type: behavior Stage: resolved
Components: Tests Versions: Python 3.3, Python 3.4
process
Status: closed Resolution: fixed
Dependencies: Superseder:
Assigned To: ezio.melotti Nosy List: ezio.melotti, python-dev, vajrasky
Priority: normal Keywords:

Created on 2013-07-28 15:09 by vajrasky, last changed 2022-04-11 14:57 by admin. This issue is now closed.

Files
File name Uploaded Description Edit
legacy_api_unit_test.txt vajrasky, 2013-07-28 15:09 review
Messages (3)
msg193831 - (view) Author: Vajrasky Kok (vajrasky) * Date: 2013-07-28 15:09
There are two classes in Lib/test/test_abc.py, which are TestABC and TestLegacyAPI.

Only TestABC is being unit tested.

Beside that TestLegacyAPI class has one duplicate test, which is test_abstractmethod_integration with TestABC class.
msg194691 - (view) Author: Roundup Robot (python-dev) (Python triager) Date: 2013-08-08 16:40
New changeset e8f8f81c5af6 by Ezio Melotti in branch '3.3':
#18581: remove duplicate test and run a test class that was skipped.  Initial patch by Vajrasky Kok.
http://hg.python.org/cpython/rev/e8f8f81c5af6

New changeset 328b1a29102c by Ezio Melotti in branch 'default':
#18581: merge with 3.3.
http://hg.python.org/cpython/rev/328b1a29102c
msg194692 - (view) Author: Ezio Melotti (ezio.melotti) * (Python committer) Date: 2013-08-08 16:41
Fixed, thanks for the report and the patch!
History
Date User Action Args
2022-04-11 14:57:48adminsetgithub: 62781
2013-08-08 16:41:09ezio.melottisetstatus: open -> closed

type: behavior
assignee: ezio.melotti
versions: + Python 3.3
nosy: + ezio.melotti

messages: + msg194692
resolution: fixed
stage: resolved
2013-08-08 16:40:17python-devsetnosy: + python-dev
messages: + msg194691
2013-07-28 15:09:45vajraskycreate