Packages
TestcontainerEx is an Elixir library for integration testing with containerized services. Start, stop, and monitor Docker, Podman, Minikube, Colima, or Apple Container containers with a unified API. Supports custom containers.
Current section
Files
Jump to
Current section
Files
lib/testcontainer_ex/container_builder_helper.ex
defmodule TestcontainerEx.ContainerBuilderHelper do
@moduledoc """
Public alias for `TestcontainerEx.Container.BuilderHelper`.
Keeps backward compatibility with code that references the flat module name.
"""
alias TestcontainerEx.Container.BuilderHelper
defdelegate build(builder, state), to: BuilderHelper
end