[Zope3-checkins]
CVS: Zope3/src/zope/app/applicationcontrol/browser/tests
- test_runtimeinfoview.py:1.4
Dmitry Vasiliev
dima at hlabs.spb.ru
Wed Mar 24 06:13:45 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/applicationcontrol/browser/tests
In directory cvs.zope.org:/tmp/cvs-serv22226/browser/tests
Modified Files:
test_runtimeinfoview.py
Log Message:
RuntimeInfo changes:
- new method: getFileSystemEncoding()
- getPythonPath() now returns unicode strings
=== Zope3/src/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py 1.3 => 1.4 ===
--- Zope3/src/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py:1.3 Tue Mar 23 08:35:09 2004
+++ Zope3/src/zope/app/applicationcontrol/browser/tests/test_runtimeinfoview.py Wed Mar 24 06:13:14 2004
@@ -42,7 +42,8 @@
self.failUnless(isinstance(test_format, DictType))
assert_keys = ['ZopeVersion', 'PythonVersion', 'PythonPath',
- 'SystemPlatform', 'CommandLine', 'ProcessId', 'Uptime' ]
+ 'SystemPlatform', 'PreferredEncoding', 'FileSystemEncoding',
+ 'CommandLine', 'ProcessId', 'Uptime' ]
test_keys = test_format.keys()
assert_keys.sort()
@@ -58,7 +59,8 @@
self.failUnless(isinstance(test_format, DictType))
assert_keys = ['ZopeVersion', 'PythonVersion', 'PythonPath',
- 'SystemPlatform', 'CommandLine', 'ProcessId', 'Uptime', 'Hint']
+ 'SystemPlatform', 'PreferredEncoding', 'FileSystemEncoding',
+ 'CommandLine', 'ProcessId', 'Uptime', 'Hint']
test_keys = test_format.keys()
assert_keys.sort()
More information about the Zope3-Checkins
mailing list