Packages

Pavlov is a BDD library for your Elixir projects, allowing you to write expressive unit tests that tell the story of how your application behaves. The syntax tries to follow RSpec's wherever possible.

Current section

Files

Jump to
pavlov lib pavlov.ex
Raw

lib/pavlov.ex

defmodule Pavlov do
@moduledoc """
The main Pavlov module.
"""
@doc """
Starts execution of the test suites.
"""
def start do
Pavlov.Utils.Memoize.ResultTable.start_link
ExUnit.start [exclude: :pending]
end
end