Files
pipenv/tests/unit/test_help.py
T
2018-04-13 00:10:45 +08:00

11 lines
191 B
Python

import subprocess
import sys
def test_help():
output = subprocess.check_output(
[sys.executable, '-m', 'pipenv.help'],
stderr=subprocess.STDOUT,
)
assert output