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