Packages

Enables consumer driven contract testing, providing a mock service and DSL for the consumer project, and interaction playback and verification for the service provider project. Integrates the https://pact.io specification with ex_unit testing.

Retired package: Release invalid - Package not yet functional. This version was a hex publish test.

Current section

Files

Jump to
ex_pact lib ex_pact.ex
Raw

lib/ex_pact.ex

defmodule ExPact do
@moduledoc """
Documentation for ExPact.
"""
@doc """
Hello world.
## Examples
iex> ExPact.hello()
:world
"""
def hello do
:world
end
end