Merge branch '1.3.x'

このコミットが含まれているのは:
Thomas Citharel 2021-11-08 09:04:54 +01:00
コミット 1bd32b4e36
この署名に対応する既知のキーがデータベースに存在しません
GPGキーID: A061B9DDE0CA0773
1個のファイルの変更25行の追加0行の削除

ファイルの表示

@ -137,4 +137,29 @@ defmodule Mix.Tasks.Mobilizon.Media.CleanOrphanTest do
size: 13_120
}
end
defp create_file do
File.cp!("test/fixtures/picture.png", "test/fixtures/picture_tmp.png")
file = %Plug.Upload{
content_type: "image/png",
path: Path.absname("test/fixtures/picture_tmp.png"),
filename: "image.png"
}
{:ok, data} = Mobilizon.Web.Upload.store(file)
%{
content_type: "image/png",
name: "image.png",
url: url
} = data
%Mobilizon.Medias.File{
name: "My Media",
url: url,
content_type: "image/png",
size: 13_120
}
end
end