summaryrefslogtreecommitdiffstats
path: root/Lib/test/test_datetime.py
diff options
context:
space:
mode:
authorUtkarsh Upadhyay <mail@musicallyut.in>2017-07-21 00:14:54 (GMT)
committerVictor Stinner <victor.stinner@gmail.com>2017-07-21 00:14:54 (GMT)
commit287c5594edc1ca08db64d1f4739cc36bfe75ae75 (patch)
tree67a8421d302c773765a452012e2317041cffd118 /Lib/test/test_datetime.py
parentfff2a21057b98732562098e3bdd65980551f0135 (diff)
downloadcpython-287c5594edc1ca08db64d1f4739cc36bfe75ae75.zip
cpython-287c5594edc1ca08db64d1f4739cc36bfe75ae75.tar.gz
cpython-287c5594edc1ca08db64d1f4739cc36bfe75ae75.tar.bz2
bpo-30822: Fix testing of datetime module. (#2530) (#2783)
Only C implementation was tested.
Diffstat (limited to 'Lib/test/test_datetime.py')
-rw-r--r--Lib/test/test_datetime.py8
1 files changed, 5 insertions, 3 deletions
diff --git a/Lib/test/test_datetime.py b/Lib/test/test_datetime.py
index 04f11c8..d659f36 100644
--- a/Lib/test/test_datetime.py
+++ b/Lib/test/test_datetime.py
@@ -20,7 +20,7 @@ test_suffixes = ["_Pure", "_Fast"]
# XXX(gb) First run all the _Pure tests, then all the _Fast tests. You might
# not believe this, but in spite of all the sys.modules trickery running a _Pure
# test last will leave a mix of pure and native datetime stuff lying around.
-test_classes = []
+all_test_classes = []
for module, suffix in zip(test_modules, test_suffixes):
test_classes = []
@@ -34,7 +34,8 @@ for module, suffix in zip(test_modules, test_suffixes):
test_classes.extend(type(test) for test in suit)
test_classes = sorted(set(test_classes), key=lambda cls: cls.__qualname__)
for cls in test_classes:
- cls.__name__ = name + suffix
+ cls.__name__ += suffix
+ cls.__qualname__ += suffix
@classmethod
def setUpClass(cls_, module=module):
cls_._save_sys_modules = sys.modules.copy()
@@ -47,9 +48,10 @@ for module, suffix in zip(test_modules, test_suffixes):
sys.modules.update(cls_._save_sys_modules)
cls.setUpClass = setUpClass
cls.tearDownClass = tearDownClass
+ all_test_classes.extend(test_classes)
def test_main():
- run_unittest(*test_classes)
+ run_unittest(*all_test_classes)
if __name__ == "__main__":
test_main()