Packages
Helpful functions with great error messages to help you write better tests.
Retired package: Release invalid - Introduce a bug that caused compilation issues for non-Absinthe users. Use 0.18.1 instead.
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