summaryrefslogtreecommitdiff
path: root/test/utils_test.exs
diff options
context:
space:
mode:
authorlain <lain@soykaf.club>2020-09-23 10:49:29 +0000
committerlain <lain@soykaf.club>2020-09-23 10:49:29 +0000
commita5e1c400e49e7979e70f2c9dd4887ae144dca44c (patch)
tree559fe96b7f65cd750a4bab5e9a117c43829c800f /test/utils_test.exs
parent34235bc02a88718b1d5a9d7fa2437784b91bb692 (diff)
parenta6c14041c49df0dc850204723cfc1f242ded8aa2 (diff)
downloadpleroma-a5e1c400e49e7979e70f2c9dd4887ae144dca44c.tar.gz
pleroma-a5e1c400e49e7979e70f2c9dd4887ae144dca44c.zip
Merge branch 'issue/1975' into 'develop'
[#1975] import emoji from a zip archive Closes admin-fe#130 See merge request pleroma/pleroma!2911
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