Skip to content

Instantly share code, notes, and snippets.

defmodule SomeTest do
use ExUnit.Case
def some_function(%{arg1: "thing", arg3: _}) do
:two
end
def some_function(%{arg1: "thing", arg2: _}) do
:one
end
def some_function(_) do