Update clear_config macro
This commit is contained in:
parent
6f60ac9f41
commit
97b5701449
2 changed files with 5 additions and 8 deletions
|
|
@ -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)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue