Added support for ytdlp cache (#245)

This commit is contained in:
Kieran
2024-05-15 13:17:11 -07:00
committed by GitHub
parent 8d9bd11882
commit dcf033f10a
2 changed files with 11 additions and 1 deletions
@@ -93,6 +93,12 @@ defmodule Pinchflat.YtDlp.CommandRunnerTest do
assert String.contains?(output, "--quiet")
end
test "sets the cache directory" do
assert {:ok, output} = Runner.run(@media_url, [], "")
assert String.contains?(output, "--cache-dir /tmp/test/tmpfiles/yt-dlp-cache")
end
end
describe "version/0" do