我正在阅读 Elixir “入门”教程,其中使用了以下代码片段:
test "removes buckets on exit", %{registry: registry} do
KV.Registry.create(registry, "shopping")
{:ok, bucket} = KV.Registry.lookup(registry, "shopping")
Agent.stop(bucket)
assert KV.Registry.lookup(registry, "shopping") == :error
end
现在,create/2
使用cast
操作而lookup
使用call
。这意味着执行异步调用,然后立即执行假定异步操作成功执行的同步调用。当代码本身正确时,计时问题是否会导致测试失败,或者是否存在我遗漏的某些cast
方面call
?