[Zope-Checkins] CVS: Zope3/lib/python/Zope/Server/VFS/tests - testOSFileSystem.py:1.1.2.6

Stephan Richter srichter@cbu.edu
Mon, 8 Apr 2002 02:50:30 -0400


Update of /cvs-repository/Zope3/lib/python/Zope/Server/VFS/tests
In directory cvs.zope.org:/tmp/cvs-serv31265/VFS/tests

Modified Files:
      Tag: Zope3-Server-Branch
	testOSFileSystem.py 
Log Message:
This is the first working version of the SMTP server. There is still a lot
of work to be done, but it is a start. Now I need to stabalize the code and
write some tests. 

Also, Gerson Kunze (author of Shicks!), whose code I used as a template,
told me that he would be working on implementing ESMTP and a better SPAM 
filter, whcih should make the server even cooler.

I guess we should start discussing how a possible MailService could look
like. 


=== Zope3/lib/python/Zope/Server/VFS/tests/testOSFileSystem.py 1.1.2.5 => 1.1.2.6 ===
         open(path, 'w').write('test')
         stat_info = os.stat(path)
-        result = self.filesystem.longify(('foo', stat_info))
+        result = self.filesystem.longify('foo', stat_info)
         self.failUnless(result.endswith('foo'))
         os.remove(path)