live_beats/test/support/presence/client_mock.ex
Berenice Medel Sánchez 6b5e820130 initial tests added
2022-01-11 14:04:27 -05:00

18 lines
296 B
Elixir

defmodule Phoenix.Presence.Client.Mock do
def init(_opts) do
{:ok, %{}}
end
def handle_join(_topic, _key, _meta, state) do
IO.inspect(:handle_join)
{:ok, state}
end
def handle_leave(_topic, _key, _meta, state) do
IO.inspect(:handle_leave)
{:ok, state}
end
end