(use_async: bool)
| 140 | @parametrize |
| 141 | @pytest.mark.asyncio |
| 142 | async def test_includes_unknown_keys(use_async: bool) -> None: |
| 143 | assert await transform({"bar": "bar", "baz_": {"FOO": 1}}, Foo6, use_async) == { |
| 144 | "Bar": "bar", |
| 145 | "baz_": {"FOO": 1}, |
| 146 | } |
| 147 | |
| 148 | |
| 149 | class Foo7(TypedDict): |
nothing calls this directly
no test coverage detected