(use_async: bool)
| 45 | @parametrize |
| 46 | @pytest.mark.asyncio |
| 47 | async def test_top_level_alias(use_async: bool) -> None: |
| 48 | assert await transform({"foo_bar": "hello"}, expected_type=Foo1, use_async=use_async) == {"fooBar": "hello"} |
| 49 | |
| 50 | |
| 51 | class Foo2(TypedDict): |
nothing calls this directly
no test coverage detected