Refactor require_migration/1 into a test helper function

This commit is contained in:
Alex Gleason 2020-07-22 13:45:15 -05:00
parent 67389b77af
commit b87a1f8eaf
No known key found for this signature in database
GPG Key ID: 7211D1F99744FBB7
2 changed files with 7 additions and 6 deletions

View File

@ -1,14 +1,10 @@
defmodule Pleroma.Repo.Migrations.AutolinkerToLinkifyTest do
use Pleroma.DataCase
import Pleroma.Factory
import Pleroma.Tests.Helpers, only: [require_migration: 1]
alias Pleroma.ConfigDB
setup_all do
[{module, _}] =
Code.require_file("20200716195806_autolinker_to_linkify.exs", "priv/repo/migrations")
{:ok, %{migration: module}}
end
setup_all do: require_migration("20200716195806_autolinker_to_linkify")
test "change/0 converts auto_linker opts for Pleroma.Formatter", %{migration: migration} do
autolinker_opts = [

View File

@ -32,6 +32,11 @@ defmodule Pleroma.Tests.Helpers do
end
end
def require_migration(migration_name) do
[{module, _}] = Code.require_file("#{migration_name}.exs", "priv/repo/migrations")
{:ok, %{migration: module}}
end
defmacro __using__(_opts) do
quote do
import Pleroma.Tests.Helpers,