SnakeBridge.TestCase (SnakeBridge v0.16.0)

Copy Markdown View Source

ExUnit CaseTemplate for SnakeBridge tests with automatic setup/teardown.

Usage

defmodule MyApp.SomeTest do
  use SnakeBridge.TestCase, pool: :example_pool

  test "runs pipeline" do
    {:ok, out} = Examplelib.SomeModule.some_call("x", y: 1)
    assert out != nil
  end
end