diff options
author | lain <lain@soykaf.club> | 2020-09-23 11:49:19 +0000 |
---|---|---|
committer | lain <lain@soykaf.club> | 2020-09-23 11:49:19 +0000 |
commit | 436d1a3c41fc92183efffb81cc041ca270025d02 (patch) | |
tree | a5a8cbe6911ef067c3d38a360897b390f6a855ff /test/utils_test.exs | |
parent | df1eb5cf7ee6d718a28fca3d3715f11ab0e263cb (diff) | |
parent | a5e1c400e49e7979e70f2c9dd4887ae144dca44c (diff) | |
download | pleroma-436d1a3c41fc92183efffb81cc041ca270025d02.tar.gz pleroma-436d1a3c41fc92183efffb81cc041ca270025d02.zip |
Merge branch 'develop' into 'issue/2115'
# Conflicts:
# CHANGELOG.md
Diffstat (limited to 'test/utils_test.exs')
-rw-r--r-- | test/utils_test.exs | 15 |
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 |