Current section
Files
Jump to
Current section
Files
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