reverse proxy tests
This commit is contained in:
parent
1179a13533
commit
4e6e5d8042
12 changed files with 524 additions and 9 deletions
11
test/tasks/ecto/ecto_test.exs
Normal file
11
test/tasks/ecto/ecto_test.exs
Normal 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
|
||||
Loading…
Add table
Add a link
Reference in a new issue