diff options
author | Roman Chvanikov <chvanikoff@pm.me> | 2020-08-05 17:46:14 +0300 |
---|---|---|
committer | Roman Chvanikov <chvanikoff@pm.me> | 2020-08-05 17:46:14 +0300 |
commit | 97b57014496003cabb416766457552ef854fa658 (patch) | |
tree | 7e1e671b5e51944e3017b57c3f3f2ecf69f6b931 | |
parent | 6f60ac9f41d9511afa71986f000a2fc6c637b0c5 (diff) | |
download | pleroma-97b57014496003cabb416766457552ef854fa658.tar.gz pleroma-97b57014496003cabb416766457552ef854fa658.zip |
Update clear_config macro
-rw-r--r-- | test/application_requirements_test.exs | 5 | ||||
-rw-r--r-- | test/support/helpers.ex | 8 |
2 files changed, 5 insertions, 8 deletions
diff --git a/test/application_requirements_test.exs b/test/application_requirements_test.exs index e96295955..21d24ddd0 100644 --- a/test/application_requirements_test.exs +++ b/test/application_requirements_test.exs @@ -127,10 +127,7 @@ defmodule Pleroma.ApplicationRequirementsTest do :ok end - setup do - Pleroma.Config.get(:i_am_aware_this_may_cause_data_loss, 42) |> IO.inspect() - clear_config([:i_am_aware_this_may_cause_data_loss, :disable_migration_check]) - end + setup do: clear_config([:i_am_aware_this_may_cause_data_loss, :disable_migration_check]) test "raises if it detects unapplied migrations" do assert_raise Pleroma.ApplicationRequirements.VerifyError, diff --git a/test/support/helpers.ex b/test/support/helpers.ex index 7d729541d..ecd4b1e18 100644 --- a/test/support/helpers.ex +++ b/test/support/helpers.ex @@ -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) |