diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2020-08-24 09:47:25 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2020-08-24 15:01:45 +0300 |
commit | 14ec12ac956ffa9964254cb3be390c9903103da3 (patch) | |
tree | 1f92e47efcfc53217640525c5ad0ea93458eae91 /test/utils_test.exs | |
parent | 0922791e4d2233d527dda23e66a952e3f359a3fe (diff) | |
download | pleroma-14ec12ac956ffa9964254cb3be390c9903103da3.tar.gz pleroma-14ec12ac956ffa9964254cb3be390c9903103da3.zip |
added tests
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 |