[Zope3-checkins] CVS: Zope3/src/zope/app/dav/ftests -
dav.py:1.2.16.2
Philipp von Weitershausen
philikon at philikon.de
Wed Feb 11 12:03:17 EST 2004
Update of /cvs-repository/Zope3/src/zope/app/dav/ftests
In directory cvs.zope.org:/tmp/cvs-serv29899/app/dav/ftests
Modified Files:
Tag: philikon-movecontent-branch
dav.py
Log Message:
Make persistent and annotatable for dublin core tests.
=== Zope3/src/zope/app/dav/ftests/dav.py 1.2.16.1 => 1.2.16.2 ===
--- Zope3/src/zope/app/dav/ftests/dav.py:1.2.16.1 Sun Feb 8 09:36:04 2004
+++ Zope3/src/zope/app/dav/ftests/dav.py Wed Feb 11 12:03:16 2004
@@ -16,14 +16,18 @@
$Id$
"""
+from persistence import Persistent
+from transaction import get_transaction
+from zope.interface import implements
from zope.testing.functional import HTTPTestCase
+
from zope.app.folder import Folder
-from transaction import get_transaction
+from zope.app.interfaces.annotation import IAttributeAnnotatable
__metaclass__ = type
-class Page:
- pass
+class Page(Persistent):
+ implements(IAttributeAnnotatable)
class DAVTestCase(HTTPTestCase):
More information about the Zope3-Checkins
mailing list