forked from AkkomaGang/akkoma
c4439c630f
grep -rl '# Copyright © .* Pleroma' * | xargs sed -i 's;Copyright © .* Pleroma .*;Copyright © 2017-2021 Pleroma Authors <https://pleroma.social/>;'
15 lines
448 B
Elixir
15 lines
448 B
Elixir
# Pleroma: A lightweight social networking server
|
|
# Copyright © 2017-2021 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/\/emoji-(.*)-#{:os.getpid()}-(.*)/
|
|
File.rm_rf(path)
|
|
end
|
|
end
|
|
end
|