Bug fixed. Added tests.

This commit is contained in:
utahta
2010-12-10 01:26:11 +09:00
parent 7b2ae023bf
commit 966fa577f7
18 changed files with 105 additions and 15 deletions
+11
View File
@@ -0,0 +1,11 @@
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])