mirror of https://github.com/python/cpython
gh-108303: Create Lib/test/test_dataclasses/ directory (#108978)
Move test_dataclasses.py and its "dataclass_*.py" modules into the new Lib/test/test_dataclasses/ subdirectory.
This commit is contained in:
parent
1fb20d42c5
commit
14d6e197cc
|
@ -3684,10 +3684,10 @@ class TestStringAnnotations(unittest.TestCase):
|
|||
self.assertEqual(C(10).x, 10)
|
||||
|
||||
def test_classvar_module_level_import(self):
|
||||
from test import dataclass_module_1
|
||||
from test import dataclass_module_1_str
|
||||
from test import dataclass_module_2
|
||||
from test import dataclass_module_2_str
|
||||
from test.test_dataclasses import dataclass_module_1
|
||||
from test.test_dataclasses import dataclass_module_1_str
|
||||
from test.test_dataclasses import dataclass_module_2
|
||||
from test.test_dataclasses import dataclass_module_2_str
|
||||
|
||||
for m in (dataclass_module_1, dataclass_module_1_str,
|
||||
dataclass_module_2, dataclass_module_2_str,
|
||||
|
@ -3725,7 +3725,7 @@ class TestStringAnnotations(unittest.TestCase):
|
|||
self.assertNotIn('not_iv4', c.__dict__)
|
||||
|
||||
def test_text_annotations(self):
|
||||
from test import dataclass_textanno
|
||||
from test.test_dataclasses import dataclass_textanno
|
||||
|
||||
self.assertEqual(
|
||||
get_type_hints(dataclass_textanno.Bar),
|
|
@ -2156,6 +2156,7 @@ TESTSUBDIRS= idlelib/idle_test \
|
|||
test/test_capi \
|
||||
test/test_cppext \
|
||||
test/test_ctypes \
|
||||
test/test_dataclasses \
|
||||
test/test_email \
|
||||
test/test_email/data \
|
||||
test/test_import \
|
||||
|
|
Loading…
Reference in New Issue