Resolved windows filesystem bug (#38)

This commit is contained in:
Kieran
2024-02-28 17:56:25 -08:00
committed by GitHub
parent c77047951f
commit 0020e5083b
2 changed files with 10 additions and 1 deletions
@@ -16,6 +16,15 @@ defmodule Pinchflat.Profiles.Options.YtDlp.DownloadOptionBuilderTest do
end
end
describe "build/1 when testing default options" do
test "it includes default options" do
assert {:ok, res} = DownloadOptionBuilder.build(@media_profile)
assert :no_progress in res
assert :windows_filenames in res
end
end
describe "build/1 when testing subtitle options" do
test "includes :write_subs option when specified" do
media_profile = %MediaProfile{@media_profile | download_subs: true}