()
| 424 | } |
| 425 | |
| 426 | def my_iter() -> Iterable[Baz8]: |
| 427 | yield {"foo_baz": "hello"} |
| 428 | yield {"foo_baz": "world"} |
| 429 | |
| 430 | assert await transform({"foo": my_iter()}, TypedDictIterableUnion, use_async) == { |
| 431 | "FOO": [{"fooBaz": "hello"}, {"fooBaz": "world"}] |
no outgoing calls
no test coverage detected