pleroma/test/pleroma/utils_test.exs

16 lines
448 B
Elixir
Raw Normal View History

2020-08-24 08:47:25 +02:00
# Pleroma: A lightweight social networking server
2022-02-26 07:11:42 +01:00
# Copyright © 2017-2022 Pleroma Authors <https://pleroma.social/>
2020-08-24 08:47:25 +02:00
# 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")
2020-09-24 09:46:09 +02:00
assert path =~ ~r/\/emoji-(.*)-#{:os.getpid()}-(.*)/
2020-08-24 08:47:25 +02:00
File.rm_rf(path)
end
end
end