Files
pipenv/tests/unit/test_help.py
Naofal-Helal 6db75e4517 format tests
2024-09-20 12:08:59 +02:00

17 lines
282 B
Python

import os
import subprocess
import sys
import pytest
@pytest.mark.cli
@pytest.mark.help
def test_help():
output = subprocess.check_output(
[sys.executable, "-m", "pipenv.help"],
stderr=subprocess.STDOUT,
env=os.environ.copy(),
)
assert output