Packages

An Elixir Ecto Package to Boost Your Productivity and Achieve 90% throughput in Just 10% of the Time.

Current section

Files

Jump to
ecto_entity test entity helpers_test.exs
Raw

test/entity/helpers_test.exs

defmodule Entity.HelpersTest do
use ExUnit.Case
use Ecto.Entity.Helpers
test "We can get the repo module to work with" do
assert get_repo() == Ecto.Entity.Repo
end
test "we can get proper PubSub server" do
assert get_pub_server() == Ecto.Entity.PubSub
end
end