aboutsummaryrefslogtreecommitdiff
path: root/test/config_test.exs
diff options
context:
space:
mode:
Diffstat (limited to 'test/config_test.exs')
-rw-r--r--test/config_test.exs10
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