Files
python-build/tests/test_04_install.py
T
2010-12-10 01:26:11 +09:00

12 lines
285 B
Python

from tests import TESTPY_VERSION
class InstallOptions(object):
force = True
configure = ""
no_setuptools = False
def test_install():
from pythonbrew.commands.install import InstallCommand
c = InstallCommand()
c.run_command(InstallOptions(), [TESTPY_VERSION])