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