mirror of
https://github.com/hatchet-dev/hatchet.git
synced 2026-01-05 16:19:43 -06:00
* api changes * doc changes * move docs * generated * generate * pkg * backmerge main * revert to main * revert main * race? * remove go tests
10 lines
212 B
Python
10 lines
212 B
Python
from examples.fanout_sync.worker import ParentInput, sync_fanout_parent
|
|
|
|
|
|
def test_run() -> None:
|
|
N = 2
|
|
|
|
result = sync_fanout_parent.run(ParentInput(n=N))
|
|
|
|
assert len(result["spawn"]["results"]) == N
|