tcga-downloader/tests/test_cli.py
2026-01-16 14:51:39 +08:00

8 lines
177 B
Python

from tcga_downloader.cli import build_parser
def test_cli_has_subcommands():
parser = build_parser()
subparsers = parser._subparsers
assert subparsers is not None