Пример #1
0
 def test_uninstall(self):
     from pythonbrew.commands.uninstall import UninstallCommand
     from pythonbrew.util import is_installed
     self._create_dummy('2.7.5')
     c = UninstallCommand()
     c.run_command(None, ['2.7.5'])
     eq_(False, is_installed('2.7.5'))
 def test_uninstall(self):
     from pythonbrew.commands.uninstall import UninstallCommand
     from pythonbrew.util import is_installed
     self._create_dummy('2.7.5')
     c = UninstallCommand()
     c.run_command(None, ['2.7.5'])
     eq_(False, is_installed('2.7.5'))
Пример #3
0
def test_uninstall():
    from pythonbrew.commands.uninstall import UninstallCommand
    for py_version in TESTPY_VERSION:
        c = UninstallCommand()
        c.run_command(None, [py_version])
Пример #4
0
def test_uninstall():
    from pythonbrew.commands.uninstall import UninstallCommand
    c = UninstallCommand()
    c.run_command(None, [TESTPY_VERSION])
Пример #5
0
def test_11_uninstall():
    from pythonbrew.commands.uninstall import UninstallCommand
    for py_version in TESTPY_VERSION:
        c = UninstallCommand()
        c.run_command(None, [py_version])