Packages

Erlang wrapper for Pact. Pact is a contract testing framework for HTTP APIs and non-HTTP asynchronous messaging systems.

Current section

Files

Jump to
pact_erlang Makefile
Raw

Makefile

REBAR?=rebar3
all: compile
compile:
@$(REBAR) compile
clean:
@$(REBAR) clean
test:
@$(REBAR) eunit
dialyzer:
@$(REBAR) as dialyzer dialyzer
hex-build:
@$(REBAR) hex build
.PHONY: all compile clean test dialyzer