Update clear_config macro

This commit is contained in:
Roman Chvanikov 2020-08-05 17:46:14 +03:00
commit 97b5701449
2 changed files with 5 additions and 8 deletions

View file

@ -17,16 +17,16 @@ defmodule Pleroma.Tests.Helpers do
defmacro clear_config(config_path, do: yield) do
quote do
initial_setting = Config.get(unquote(config_path), :__clear_config_absent__)
initial_setting = Config.fetch(unquote(config_path))
unquote(yield)
on_exit(fn ->
case initial_setting do
:__clear_config_absent__ ->
:error ->
Config.delete(unquote(config_path))
_ ->
Config.put(unquote(config_path), initial_setting)
{:ok, value} ->
Config.put(unquote(config_path), value)
end
end)