Beispiel #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
Beispiel #2
0
 def test_add_red(self):
     text = display.add_color_for_state(actionrun.ActionRun.FAILED, )
     assert text.startswith(display.Color.colors['red']), text
Beispiel #3
0
 def test_add_green(self):
     text = display.add_color_for_state(actionrun.ActionRun.RUNNING, )
     assert text.startswith(display.Color.colors['green']), text
Beispiel #4
0
 def test_add_blue(self):
     text = display.add_color_for_state(service.ServiceState.DISABLED)
     assert text.startswith(display.Color.colors['blue']), text
Beispiel #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
Beispiel #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
Beispiel #7
0
 def test_add_blue(self):
     text = display.add_color_for_state(service.ServiceState.DISABLED)
     assert text.startswith(display.Color.colors['blue']), text
Beispiel #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