diff options
author | Alex Gleason <alex@alexgleason.me> | 2020-08-05 13:08:31 -0500 |
---|---|---|
committer | Alex Gleason <alex@alexgleason.me> | 2020-08-05 13:08:31 -0500 |
commit | cc196e2cd57966889021342405ebc8fd0763e83a (patch) | |
tree | 232051460624a0fd0720ed04cc5512208ce1989b /test/support/helpers.ex | |
parent | ad9c925efb77287316f5dbac26f6a1b16662910a (diff) | |
parent | 7755f49e281e4990db5317b33d6b8e0d12982e0c (diff) | |
download | pleroma-cc196e2cd57966889021342405ebc8fd0763e83a.tar.gz pleroma-cc196e2cd57966889021342405ebc8fd0763e83a.zip |
Merge remote-tracking branch 'upstream/develop' into restrict-domain
Diffstat (limited to 'test/support/helpers.ex')
-rw-r--r-- | test/support/helpers.ex | 19 |
1 files changed, 17 insertions, 2 deletions
diff --git a/test/support/helpers.ex b/test/support/helpers.ex index 26281b45e..ecd4b1e18 100644 --- a/test/support/helpers.ex +++ b/test/support/helpers.ex @@ -17,9 +17,19 @@ defmodule Pleroma.Tests.Helpers do defmacro clear_config(config_path, do: yield) do quote do - initial_setting = Config.get(unquote(config_path)) + initial_setting = Config.fetch(unquote(config_path)) unquote(yield) - on_exit(fn -> Config.put(unquote(config_path), initial_setting) end) + + on_exit(fn -> + case initial_setting do + :error -> + Config.delete(unquote(config_path)) + + {:ok, value} -> + Config.put(unquote(config_path), value) + end + end) + :ok end end @@ -32,6 +42,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, |