Files
pipenv/test_windows/test_basic.py
T
Erin O'Connell afdfb6ca86 this is annoying
2017-09-01 23:41:28 -06:00

15 lines
298 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