mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 22:50:18 +00:00
11 lines
191 B
Python
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
|