2 new revisions:

Revision: 3b0a1515ba96
Author:   Pekka Klärck
Date:     Thu Dec  1 05:35:40 2011
Log: Allow calling Settings.(log|report)_config also when log/report is Non...
http://code.google.com/p/robotframework/source/detail?r=3b0a1515ba96

Revision: c5bf86f443aa
Author:   Pekka Klärck
Date:     Thu Dec  1 05:37:45 2011
Log:      fixed test after removing suite.stat_message
http://code.google.com/p/robotframework/source/detail?r=c5bf86f443aa

==============================================================================
Revision: 3b0a1515ba96
Author:   Pekka Klärck
Date:     Thu Dec  1 05:35:40 2011
Log: Allow calling Settings.(log|report)_config also when log/report is None
http://code.google.com/p/robotframework/source/detail?r=3b0a1515ba96

Modified:
 /src/robot/conf/settings.py

=======================================
--- /src/robot/conf/settings.py Thu Dec  1 04:32:24 2011
+++ /src/robot/conf/settings.py Thu Dec  1 05:35:40 2011
@@ -350,7 +350,7 @@
         }

     def _url_from_path(self, source, destination):
-        if not destination:
+        if not (source and destination):
             return None
         return utils.get_link_path(destination, os.path.dirname(source))


==============================================================================
Revision: c5bf86f443aa
Author:   Pekka Klärck
Date:     Thu Dec  1 05:37:45 2011
Log:      fixed test after removing suite.stat_message
http://code.google.com/p/robotframework/source/detail?r=c5bf86f443aa

Modified:
 /atest/robot/output/processing_output.txt

=======================================
--- /atest/robot/output/processing_output.txt   Tue Nov  8 22:12:07 2011
+++ /atest/robot/output/processing_output.txt   Thu Dec  1 05:37:45 2011
@@ -13,7 +13,7 @@
     Should Be Equal as Strings   ${SUITE.metadata}  {Something: My Value}
     Check Normal Suite Defaults  ${SUITE}
Should Be Equal ${SUITE.full_message} 2 critical tests, 2 passed, 0 failed\n 2 tests total, 2 passed, 0 failed - Should Be Equal ${SUITE.stat_message} 2 critical tests, 2 passed, 0 failed\n 2 tests total, 2 passed, 0 failed + Should Be Equal ${SUITE.statistics.message} 2 critical tests, 2 passed, 0 failed\n 2 tests total, 2 passed, 0 failed
     Check Suite Contains Tests  ${SUITE}  First One  Second One

 Directory Suite

Reply via email to