ブログから転載。 Elixir v1.3.0-rc.0からExUnitに追加された機能に、describeとnamed setupがあります。 describe describe/2マクロを使うことで、複数のテストケースをまとめることができます。 defmodule MyAppTest do use ExUnit.Case, async: true describe "addition" do test "1 + 2 = 3" do assert 1 + 2 == 3 end test "6 + 8 = 14" do assert 6 + 8 == 14 end end end