diff options
author | rinpatch <rinpatch@sdf.org> | 2020-01-31 00:09:13 +0300 |
---|---|---|
committer | rinpatch <rinpatch@sdf.org> | 2020-01-31 00:09:13 +0300 |
commit | 62b5da21e7eb7cfc82b635dfcac39258aacedb9c (patch) | |
tree | ea32e34eead4651b9baff2d2f46e71d143a93b9a /test/uploaders/local_test.exs | |
parent | 946de2299cccebac6718e3a132397ff5c06c67ee (diff) | |
download | pleroma-revert/attachment-cleanup.tar.gz |
Revert "Merge branch 'feature/attachments-cleanup' into 'develop'"revert/attachment-cleanup
This reverts commit a431e8c9f7033c739e10b0e8b34c75f2cc1d38d4, reversing
changes made to 8b4d81609d5627d62b826bcd3e87290cb513495f.
Diffstat (limited to 'test/uploaders/local_test.exs')
-rw-r--r-- | test/uploaders/local_test.exs | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/test/uploaders/local_test.exs b/test/uploaders/local_test.exs index 1963dac23..fc442d0f1 100644 --- a/test/uploaders/local_test.exs +++ b/test/uploaders/local_test.exs @@ -29,25 +29,4 @@ defmodule Pleroma.Uploaders.LocalTest do |> File.exists?() end end - - describe "delete_file/1" do - test "deletes local file" do - file_path = "local_upload/files/image.jpg" - - file = %Pleroma.Upload{ - name: "image.jpg", - content_type: "image/jpg", - path: file_path, - tempfile: Path.absname("test/fixtures/image_tmp.jpg") - } - - :ok = Local.put_file(file) - local_path = Path.join([Local.upload_path(), file_path]) - assert File.exists?(local_path) - - Local.delete_file(file_path) - - refute File.exists?(local_path) - end - end end |