Current section
Files
Jump to
Current section
Files
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