You could write a controller test that looks something like the following
test "this thing halts", %{conn: conn} do
conn = get(conn, some_path(conn, :index)
assert conn.halted
end
You could write a controller test that looks something like the following
test "this thing halts", %{conn: conn} do
conn = get(conn, some_path(conn, :index)
assert conn.halted
end