2 new revisions: Revision: 56b27c4d07d7 Author: Janne Härkönen <[email protected]> Date: Wed Nov 30 00:38:17 2011 Log: result: serialize suite statistics correctly http://code.google.com/p/robotframework/source/detail?r=56b27c4d07d7
Revision: 022120f20974 Author: Janne Härkönen <[email protected]> Date: Wed Nov 30 01:21:47 2011 Log: removed dead code http://code.google.com/p/robotframework/source/detail?r=022120f20974 ============================================================================== Revision: 56b27c4d07d7 Author: Janne Härkönen <[email protected]> Date: Wed Nov 30 00:38:17 2011 Log: result: serialize suite statistics correctly http://code.google.com/p/robotframework/source/detail?r=56b27c4d07d7 Modified: /src/robot/result/jsondatamodelhandlers.py ======================================= --- /src/robot/result/jsondatamodelhandlers.py Tue Nov 29 01:53:28 2011 +++ /src/robot/result/jsondatamodelhandlers.py Wed Nov 30 00:38:17 2011 @@ -172,8 +172,8 @@ def _stats(self, suite): stats = suite.statistics # Access property only once - return [stats.all.total, stats.all.failed, - stats.critical.total, stats.critical.failed] + return [stats.all.total, stats.all.passed, + stats.critical.total, stats.critical.passed] class TestHandler(_Handler): ============================================================================== Revision: 022120f20974 Author: Janne Härkönen <[email protected]> Date: Wed Nov 30 01:21:47 2011 Log: removed dead code http://code.google.com/p/robotframework/source/detail?r=022120f20974 Deleted: /src/robot/reporting/outputwriter.py ======================================= --- /src/robot/reporting/outputwriter.py Sat Nov 5 02:54:53 2011 +++ /dev/null @@ -1,27 +0,0 @@ -# Copyright 2008-2011 Nokia Siemens Networks Oyj -# -# Licensed under the Apache License, Version 2.0 (the "License"); -# you may not use this file except in compliance with the License. -# You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software -# distributed under the License is distributed on an "AS IS" BASIS, -# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. -# See the License for the specific language governing permissions and -# limitations under the License. - -from robot.output import XmlLogger - -from robot.result.visitor import SuiteVisitor - - -class OutputWriter(XmlLogger, SuiteVisitor): - - def __init__(self, path): - XmlLogger.__init__(self, path, generator='Rebot') - - def start_message(self, msg): - self._write_message(msg) -
