mirror of
https://github.com/pypa/pipenv.git
synced 2026-05-07 08:50:10 -04:00
17 lines
282 B
Python
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
|