def test_update(self):
     from pythonbrew.commands.update import UpdateCommand
     c = UpdateCommand()
     c.run_command(
         self.Options({
             'master': True,
             'develop': False,
             'config': False,
             'force': False
         }), None)
Esempio n. 2
0
def test_update():
    from pythonbrew.commands.update import UpdateCommand
    c = UpdateCommand()
    c.run_command(None, None)
    
Esempio n. 3
0
def test_00_update():
    from pythonbrew.commands.update import UpdateCommand
    c = UpdateCommand()
    c.run_command(Options({'master':False, 'develop':False, 'config':False, 'force':False}), 
                  None)