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