diff options
author | Mark Felder <feld@FreeBSD.org> | 2020-09-22 11:19:29 -0500 |
---|---|---|
committer | Mark Felder <feld@FreeBSD.org> | 2020-09-22 11:19:29 -0500 |
commit | 25bdf0d0d95bf748f10c43d569640794a8a0d4c7 (patch) | |
tree | 08cf6a4ebaab75fee71c139860d1c34c3f96d897 /test/config | |
parent | e2dcf039d24b1606c90cea75ef11c79b7677c209 (diff) | |
download | pleroma-25bdf0d0d95bf748f10c43d569640794a8a0d4c7.tar.gz |
Add test for welcome message format
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 7f0d2a298..e8140f58e 100644 --- a/test/config/deprecation_warnings_test.exs +++ b/test/config/deprecation_warnings_test.exs @@ -66,6 +66,14 @@ defmodule Pleroma.Config.DeprecationWarningsTest do end) =~ "Your config is using old format (only domain) for MediaProxy whitelist option" end + test "check_welcome_message_config/0" do + clear_config([:instance, :welcome_user_nickname], "LainChan") + + assert capture_log(fn -> + DeprecationWarnings.check_welcome_message_config() + end) =~ "Your config is using the old namespace for Welcome messages configuration." + end + describe "check_gun_pool_options/0" do test "await_up_timeout" do config = Config.get(:connections_pool) |