diff options
author | href <href@random.sh> | 2018-11-06 11:34:34 +0100 |
---|---|---|
committer | href <href@random.sh> | 2018-11-06 15:12:53 +0100 |
commit | 2bc924ba451b1a324663133632093914192cec2d (patch) | |
tree | fbee2b582ce477f9db6f0dce5e9a7add4867902d /test/config_test.exs | |
parent | 0f6c4635a64e89cc72921456e6cfa3d488d894bf (diff) | |
download | pleroma-2bc924ba451b1a324663133632093914192cec2d.tar.gz pleroma-2bc924ba451b1a324663133632093914192cec2d.zip |
Get rid of Pleroma.Config in favor of Application
Discussed in https://git.pleroma.social/pleroma/pleroma/merge_requests/426#note_7232
Diffstat (limited to 'test/config_test.exs')
-rw-r--r-- | test/config_test.exs | 10 |
1 files changed, 0 insertions, 10 deletions
diff --git a/test/config_test.exs b/test/config_test.exs deleted file mode 100644 index 6d0f0a2d4..000000000 --- a/test/config_test.exs +++ /dev/null @@ -1,10 +0,0 @@ -defmodule Pleroma.ConfigTest do - use Pleroma.DataCase - alias Pleroma.Config - - test "get returns the item at the path if there is one" do - Config.put([:instance, :name], "Plemora") - assert Config.get([:instance, :name]) == "Plemora" - assert Config.get([:unknown]) == nil - end -end |