Files
pipenv/test_windows/test_basic.py
T
kennethreitz 4ba1f1285c basic windows tests
Signed-off-by: Kenneth Reitz <me@kennethreitz.org>
2017-09-01 22:37:30 -04:00

16 lines
299 B
Python

import delegator
class TestPipenv():
def test_existience(self):
assert True
def test_install(self):
c = delegator.run('pipenv install')
assert c.return_code == 0
def test_lock(self):
c = delegator.run('pipenv lock')
assert c.return_code == 0