# `SnakeBridge.TestCase`
[🔗](https://github.com/nshkrdotcom/snakebridge/blob/v0.16.0/lib/snakebridge/test_case.ex#L1)

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

---

*Consult [api-reference.md](api-reference.md) for complete listing*
