defmodule Test do @moduledoc false use ExUnit.Case doctest test "greets the world" do assert .hello(nil) == "Hello!" end test "greets a specific person" do assert .hello("My Friend", %{account_id: 1, user_id: 2}) == "Hello My Friend from account 1!" end end