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/docker_url.ex
defmodule TestcontainerEx.DockerUrl do
@moduledoc """
Public alias for `TestcontainerEx.Connection.Url`.
Keeps backward compatibility with code that references the flat module name.
"""
alias TestcontainerEx.Connection.Url
defdelegate construct(url), to: Url
defdelegate tls_verify?, to: Url
defdelegate https?(url), to: Url
end