Current section

Files

Jump to
assertions lib case.ex
Raw

lib/case.ex

defmodule Assertions.Case do
@moduledoc """
A wrapper for `ExUnit.Case` that provides all assertions in the library.
"""
use ExUnit.CaseTemplate
using do
quote do
require Assertions
import Assertions
end
end
end