Files
pipenv/test_windows/test_basic.py
T
2017-09-01 23:48:01 -06: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