aboutsummaryrefslogtreecommitdiff
path: root/test/utils_test.exs
diff options
context:
space:
mode:
authorRoman Chvanikov <chvanikoff@pm.me>2020-09-23 13:56:50 +0300
committerRoman Chvanikov <chvanikoff@pm.me>2020-09-23 13:56:50 +0300
commit8f5589cf667d8dd24da07e58db94225d81a55a7b (patch)
tree7598cf8c495f0d02b3a4704a79e8618bd9652fee /test/utils_test.exs
parentb0bd81ef7187ddf5b4e6cfbc1780fc60b65798c6 (diff)
parenta5e1c400e49e7979e70f2c9dd4887ae144dca44c (diff)
downloadpleroma-8f5589cf667d8dd24da07e58db94225d81a55a7b.tar.gz
Merge develop
Diffstat (limited to 'test/utils_test.exs')
-rw-r--r--test/utils_test.exs15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/utils_test.exs b/test/utils_test.exs
new file mode 100644
index 000000000..3a730d545
--- /dev/null
+++ b/test/utils_test.exs
@@ -0,0 +1,15 @@
+# Pleroma: A lightweight social networking server
+# Copyright © 2017-2020 Pleroma Authors <https://pleroma.social/>
+# SPDX-License-Identifier: AGPL-3.0-only
+
+defmodule Pleroma.UtilsTest do
+ use ExUnit.Case, async: true
+
+ describe "tmp_dir/1" do
+ test "returns unique temporary directory" do
+ {:ok, path} = Pleroma.Utils.tmp_dir("emoji")
+ assert path =~ ~r/\/tmp\/emoji-(.*)-#{:os.getpid()}-(.*)/
+ File.rm_rf(path)
+ end
+ end
+end