| Index: scripts/master/unittests/process_log_test.py
|
| ===================================================================
|
| --- scripts/master/unittests/process_log_test.py (revision 193793)
|
| +++ scripts/master/unittests/process_log_test.py (working copy)
|
| @@ -431,6 +431,13 @@
|
| expected = json.load(open(os.path.join(test_env.DATA_PATH, filename)))
|
| self.assertEqual(expected, actual)
|
|
|
| + def testPageCycler(self):
|
| + step = self._ConstructStep(process_log.GraphingPageCyclerLogProcessor,
|
| + 'page_cycler.log')
|
| + step.commandComplete('mycommand')
|
| + expected = 't: 2.32k'
|
| + self.assertEqual(expected, step._result_text[0])
|
|
|
| +
|
| if __name__ == '__main__':
|
| unittest.main()
|
|
|