summaryrefslogtreecommitdiff
path: root/test/support/helpers.ex
diff options
context:
space:
mode:
authorRoman Chvanikov <chvanikoff@pm.me>2020-08-04 14:35:47 +0300
committerRoman Chvanikov <chvanikoff@pm.me>2020-08-04 14:35:47 +0300
commit56e9bf33932bacfdffd700b97e3117fc593cac11 (patch)
treee16ea207bb67fe8f54174f42fb3e0f4edd6e6fd7 /test/support/helpers.ex
parente3953923aca1706ab508bfda1ab892304b29c09a (diff)
downloadpleroma-56e9bf33932bacfdffd700b97e3117fc593cac11.tar.gz
pleroma-56e9bf33932bacfdffd700b97e3117fc593cac11.zip
Unify Config.get behaviour for atom/list key param
Diffstat (limited to 'test/support/helpers.ex')
-rw-r--r--test/support/helpers.ex14
1 files changed, 12 insertions, 2 deletions
diff --git a/test/support/helpers.ex b/test/support/helpers.ex
index 5cbf2e291..7d729541d 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.get(unquote(config_path), :__clear_config_absent__)
unquote(yield)
- on_exit(fn -> Config.put(unquote(config_path), initial_setting) end)
+
+ on_exit(fn ->
+ case initial_setting do
+ :__clear_config_absent__ ->
+ Config.delete(unquote(config_path))
+
+ _ ->
+ Config.put(unquote(config_path), initial_setting)
+ end
+ end)
+
:ok
end
end