(use_async: bool)
| 158 | @parametrize |
| 159 | @pytest.mark.asyncio |
| 160 | async def test_ignores_invalid_input(use_async: bool) -> None: |
| 161 | assert await transform({"bar": "<foo>"}, Foo7, use_async) == {"bAr": "<foo>"} |
| 162 | assert await transform({"foo": "<foo>"}, Foo7, use_async) == {"foo": "<foo>"} |
| 163 | |
| 164 | |
| 165 | class DatetimeDict(TypedDict, total=False): |
nothing calls this directly
no test coverage detected