[Zope-Checkins] CVS: Zope3/lib/python/Zope/Publisher/tests - testPublisher.py:1.1.2.6
Tres Seaver
tseaver@zope.com
Tue, 12 Feb 2002 15:56:44 -0500
Update of /cvs-repository/Zope3/lib/python/Zope/Publisher/tests
In directory cvs.zope.org:/tmp/cvs-serv19744/Zope/Publisher/tests
Modified Files:
Tag: Zope-3x-branch
testPublisher.py
Log Message:
- Normalize file headers.
- Fix violations of "80 character" rule.
=== Zope3/lib/python/Zope/Publisher/tests/testPublisher.py 1.1.2.5 => 1.1.2.6 ===
+#
# Copyright (c) 2001 Zope Corporation and Contributors. All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
@@ -6,6 +8,11 @@
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
+##############################################################################
+"""
+
+$Id$
+"""
import unittest
@@ -64,7 +71,8 @@
return request.response.outstream.getvalue()
def testImplementsIPublication(self):
- self.failUnless(IPublication.isImplementedBy(DefaultPublication(self.app)))
+ self.failUnless(IPublication.isImplementedBy(
+ DefaultPublication(self.app)))
def testInterfacesVerify(self):
for interface in instancesOfObjectImplements(DefaultPublication):