[Zope-Checkins] CVS: Zope3/lib/python/Zope/Server/VFS/tests - testOSFileSystem.py:1.1.2.9
Shane Hathaway
shane@cvs.zope.org
Thu, 11 Apr 2002 12:25:06 -0400
Update of /cvs-repository/Zope3/lib/python/Zope/Server/VFS/tests
In directory cvs.zope.org:/tmp/cvs-serv10356
Modified Files:
Tag: Zope3-Server-Branch
testOSFileSystem.py
Log Message:
Disabled the chown() test. It won't work for most people on Unix.
=== Zope3/lib/python/Zope/Server/VFS/tests/testOSFileSystem.py 1.1.2.8 => 1.1.2.9 ===
def testChown(self):
+ # This test is disabled until we start using a RAM filesystem
+ # for testing.
+ return
path = os.path.join(self.root, 'foo')
open(path, 'w').write('writing test')
self.filesystem.chown('foo', 500, 500)