Files
2021-08-03 10:41:19 +08:00

16 lines
274 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