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