reverse proxy tests

This commit is contained in:
Alexander Strizhakov 2019-07-09 16:54:13 +00:00 committed by kaniini
commit 4e6e5d8042
12 changed files with 524 additions and 9 deletions

View file

@ -0,0 +1,11 @@
defmodule Mix.Tasks.Pleroma.EctoTest do
use ExUnit.Case, async: true
test "raise on bad path" do
assert_raise RuntimeError, ~r/Could not find migrations directory/, fn ->
Mix.Tasks.Pleroma.Ecto.ensure_migrations_path(Pleroma.Repo,
migrations_path: "some-path"
)
end
end
end