()
| 380 | } |
| 381 | |
| 382 | def my_iter() -> Iterable[Baz8]: |
| 383 | yield {"foo_baz": "hello"} |
| 384 | yield {"foo_baz": "world"} |
| 385 | |
| 386 | assert await transform({"foo": my_iter()}, TypedDictIterableUnion, use_async) == { |
| 387 | "FOO": [{"fooBaz": "hello"}, {"fooBaz": "world"}] |
no outgoing calls
no test coverage detected