summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMark Felder <feld@FreeBSD.org>2020-09-22 11:34:51 -0500
committerMark Felder <feld@FreeBSD.org>2020-09-22 11:34:51 -0500
commit88653c01c92fffb396e32edad203d18607980c04 (patch)
treef6f23d84525334b1f82ace1416a8216b9c81d223
parent7775b1540f47f792f0afa7c49a2cf058e2f6470e (diff)
Add test for check_activity_expiration_config/0
-rw-r--r--test/config/deprecation_warnings_test.exs8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/config/deprecation_warnings_test.exs b/test/config/deprecation_warnings_test.exs
index 0efc0843c..28355d7eb 100644
--- a/test/config/deprecation_warnings_test.exs
+++ b/test/config/deprecation_warnings_test.exs
@@ -82,6 +82,14 @@ defmodule Pleroma.Config.DeprecationWarningsTest do
end) =~ "You are using the old configuration mechanism for the hellthread filter."
end
+ test "check_activity_expiration_config/0" do
+ clear_config([Pleroma.ActivityExpiration, :enabled], true)
+
+ assert capture_log(fn ->
+ DeprecationWarnings.check_activity_expiration_config()
+ end) =~ "Your config is using old namespace for activity expiration configuration."
+ end
+
describe "check_gun_pool_options/0" do
test "await_up_timeout" do
config = Config.get(:connections_pool)