Chromium Code Reviews| OLD | NEW |
|---|---|
| (Empty) | |
| 1 # Copyright 2016 The Chromium Authors. All rights reserved. | |
|
stgao
2016/03/28 22:27:22
As result_status is straight-forward, we could ski
chanli
2016/03/29 01:35:47
Done.
| |
| 2 # Use of this source code is governed by a BSD-style license that can be | |
| 3 # found in the LICENSE file. | |
| 4 | |
| 5 from testing_utils import testing | |
| 6 | |
| 7 from handlers import result_status | |
| 8 from model import wf_analysis_status | |
| 9 | |
| 10 class ResultStatusTest(testing.AppengineTestCase): | |
| 11 | |
| 12 def testToStatusMessage(self): | |
| 13 self.assertEqual( | |
| 14 'Flaky tests.', result_status.ToStatusMessage(result_status.FLAKY)) | |
| 15 | |
| 16 | |
| OLD | NEW |