Example #1
0
 def test_test_gating_status2html_failed(self):
     """ Test the test_gating_status2html method with a status: Failed. """
     output = util.test_gating_status2html(None, TestGatingStatus.failed,
                                           '1 of 3 tests failed')
     expected = ('<span class="label label-danger">Tests Failed</span>'
                 '<p><a class="gating-summary" href="#automatedtests">'
                 '1 of 3 tests failed</a></p>')
     assert output == expected
Example #2
0
 def test_test_gating_status2html_missing(self):
     """ Test the test_gating_status2html method with a status: None. """
     output = util.test_gating_status2html(None, None)
     assert output == '<span class="label label-primary">Tests not running</span>'
Example #3
0
 def test_test_gating_status2html_waiting(self):
     """ Test the test_gating_status2html method with a status: Waiting. """
     output = util.test_gating_status2html(None, TestGatingStatus.waiting)
     assert output == '<span class="label label-info">Tests Waiting</span>'
Example #4
0
 def test_test_gating_status2html_queued(self):
     """ Test the test_gating_status2html method with a status: Queued. """
     output = util.test_gating_status2html(None, TestGatingStatus.queued)
     assert output == '<span class="label label-info">Tests Queued</span>'
Example #5
0
 def test_test_gating_status2html_passed(self):
     """ Test the test_gating_status2html method with a status: Passed. """
     output = util.test_gating_status2html(None, TestGatingStatus.passed)
     assert output == '<span class="label label-success">Tests Passed</span>'
Example #6
0
 def test_test_gating_status2html_running(self):
     """ Test the test_gating_status2html method with a status: Running. """
     output = util.test_gating_status2html(None, TestGatingStatus.running)
     assert output == '<span class="label label-warning">Tests Running</span>'