mirror of https://github.com/python/cpython
Improve test coverage for is_typeddict (#104884)
In particular, it's important to test that is_typeddict(TypedDict) returns False.
This commit is contained in:
parent
c90a862cdc
commit
1497607a8e
|
@ -7223,10 +7223,29 @@ class TypedDictTests(BaseTestCase):
|
|||
pass
|
||||
|
||||
def test_is_typeddict(self):
|
||||
assert is_typeddict(Point2D) is True
|
||||
assert is_typeddict(Union[str, int]) is False
|
||||
self.assertIs(is_typeddict(Point2D), True)
|
||||
self.assertIs(is_typeddict(Union[str, int]), False)
|
||||
# classes, not instances
|
||||
assert is_typeddict(Point2D()) is False
|
||||
self.assertIs(is_typeddict(Point2D()), False)
|
||||
call_based = TypedDict('call_based', {'a': int})
|
||||
self.assertIs(is_typeddict(call_based), True)
|
||||
self.assertIs(is_typeddict(call_based()), False)
|
||||
|
||||
T = TypeVar("T")
|
||||
class BarGeneric(TypedDict, Generic[T]):
|
||||
a: T
|
||||
self.assertIs(is_typeddict(BarGeneric), True)
|
||||
self.assertIs(is_typeddict(BarGeneric[int]), False)
|
||||
self.assertIs(is_typeddict(BarGeneric()), False)
|
||||
|
||||
class NewGeneric[T](TypedDict):
|
||||
a: T
|
||||
self.assertIs(is_typeddict(NewGeneric), True)
|
||||
self.assertIs(is_typeddict(NewGeneric[int]), False)
|
||||
self.assertIs(is_typeddict(NewGeneric()), False)
|
||||
|
||||
# The TypedDict constructor is not itself a TypedDict
|
||||
self.assertIs(is_typeddict(TypedDict), False)
|
||||
|
||||
def test_get_type_hints(self):
|
||||
self.assertEqual(
|
||||
|
|
Loading…
Reference in New Issue