diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-09-22 11:22:15 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-09-22 11:22:15 -0500 |
commit | 7775b1540f47f792f0afa7c49a2cf058e2f6470e (patch) | |
tree | 57824c85ed7301a74f50c60714410d13848a465e /test/config | |
parent | 25bdf0d0d95bf748f10c43d569640794a8a0d4c7 (diff) | |
download | pleroma-7775b1540f47f792f0afa7c49a2cf058e2f6470e.tar.gz |
Add deprecation warning test for check_hellthread_threshold/0
Diffstat (limited to 'test/config')
-rw-r--r-- | test/config/deprecation_warnings_test.exs | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/test/config/deprecation_warnings_test.exs b/test/config/deprecation_warnings_test.exs index e8140f58e..0efc0843c 100644 --- a/test/config/deprecation_warnings_test.exs +++ b/test/config/deprecation_warnings_test.exs @@ -74,6 +74,14 @@ defmodule Pleroma.Config.DeprecationWarningsTest do end) =~ "Your config is using the old namespace for Welcome messages configuration." end + test "check_hellthread_threshold/0" do + clear_config([:mrf_hellthread, :threshold], 16) + + assert capture_log(fn -> + DeprecationWarnings.check_hellthread_threshold() + end) =~ "You are using the old configuration mechanism for the hellthread filter." + end + describe "check_gun_pool_options/0" do test "await_up_timeout" do config = Config.get(:connections_pool) |