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