mirror of
https://github.com/kennethreitz/pipenv.git
synced 2026-06-05 06:46:15 +00:00
16 lines
274 B
Python
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
|