mirror of https://github.com/python/cpython
bpo-46685: cover `TypeError` of `ForwardRef(1)` in `test_typing` (GH-31223)
This commit is contained in:
parent
f71a69aa92
commit
d2d1d49eac
|
@ -2792,6 +2792,10 @@ class ForwardRefTests(BaseTestCase):
|
|||
with self.assertRaises(TypeError):
|
||||
issubclass(int, fr)
|
||||
|
||||
def test_forwardref_only_str_arg(self):
|
||||
with self.assertRaises(TypeError):
|
||||
typing.ForwardRef(1) # only `str` type is allowed
|
||||
|
||||
def test_forward_equality(self):
|
||||
fr = typing.ForwardRef('int')
|
||||
self.assertEqual(fr, typing.ForwardRef('int'))
|
||||
|
|
Loading…
Reference in New Issue