Exemple #1
0
 def test_add_blue(self):
     text = display.add_color_for_state(job.Job.STATUS_DISABLED)
     assert text.startswith(display.Color.colors['blue']), text
Exemple #2
0
 def test_add_red(self):
     text = display.add_color_for_state(actionrun.ActionRun.FAILED, )
     assert text.startswith(display.Color.colors['red']), text
Exemple #3
0
 def test_add_green(self):
     text = display.add_color_for_state(actionrun.ActionRun.RUNNING, )
     assert text.startswith(display.Color.colors['green']), text
Exemple #4
0
 def test_add_blue(self):
     text = display.add_color_for_state(service.ServiceState.DISABLED)
     assert text.startswith(display.Color.colors['blue']), text
Exemple #5
0
 def test_add_green(self):
     text = display.add_color_for_state(
         actionrun.ActionRun.STATE_RUNNING.name)
     assert text.startswith(display.Color.colors['green']), text
Exemple #6
0
 def test_add_red(self):
     text = display.add_color_for_state(
         actionrun.ActionRun.STATE_FAILED.name)
     assert text.startswith(display.Color.colors['red']), text
Exemple #7
0
 def test_add_blue(self):
     text = display.add_color_for_state(service.ServiceState.DISABLED)
     assert text.startswith(display.Color.colors['blue']), text
Exemple #8
0
 def test_add_blue(self):
     text = display.add_color_for_state(job.Job.STATUS_DISABLED)
     assert text.startswith(display.Color.colors['blue']), text