多行 doctests
你可以使用“…>”作为第一行之后的行来进行多行 doctest
iex> Foo.Bar.somethingConditional("baz")
...> |> case do
...> {:ok, _} -> true
...> {:error, _} -> false
...> end
true
你可以使用“…>”作为第一行之后的行来进行多行 doctest
iex> Foo.Bar.somethingConditional("baz")
...> |> case do
...> {:ok, _} -> true
...> {:error, _} -> false
...> end
true