1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-27 02:55:48 +01:00
pleroma/benchmarks/load_testing/helper.ex
2019-09-19 14:02:27 +03:00

12 lines
235 B
Elixir

defmodule Pleroma.LoadTesting.Helper do
defmacro __using__(_) do
quote do
import Ecto.Query
alias Pleroma.Repo
alias Pleroma.User
defp to_sec(microseconds), do: microseconds / 1_000_000
end
end
end