Exemplo n.º 1
0
 def test_updateInstallers_bad_schema(self):
     update = sm.ScenarioInstaller(installer='daisy').format()
     update['not_exist'] = 'not_exist'
     return [update]
Exemplo n.º 2
0
 def test_updateInstallers_duplicated(self):
     update = sm.ScenarioInstaller(installer='daisy').format()
     return [update, update]
Exemplo n.º 3
0
 def test_updateInstallers_succ(self):
     update = sm.ScenarioInstaller(installer='daisy').format()
     self.req_d['installers'] = [update]
     return [update]
Exemplo n.º 4
0
 def test_addInstallers_bad_schema(self):
     add = sm.ScenarioInstaller(installer='daisy').format()
     add['not_exist'] = 'not_exist'
     return [add]
Exemplo n.º 5
0
 def test_addInstallers_already_exist(self):
     add = sm.ScenarioInstaller(installer='apex').format()
     return [add]
Exemplo n.º 6
0
 def test_addInstallers_succ(self):
     add = sm.ScenarioInstaller(installer='daisy').format()
     self.req_d['installers'].append(add)
     return [add]