tcga-downloader/tests/test_download.py
2026-01-16 14:50:34 +08:00

10 lines
257 B
Python

from pathlib import Path
from tcga_downloader.download import build_gdc_command
def test_build_gdc_command():
cmd = build_gdc_command(Path("/tmp/m.tsv"), Path("/data"), processes=4, retries=3)
assert "gdc-client" in cmd[0]
assert "-m" in cmd