[Zope3-checkins]
CVS: Zope3/src/zope/app/browser/userpreferences/tests
- __init__.py:1.1.2.1 test_userprefphony.py:1.1.2.1
Jim Fulton
jim at zope.com
Tue Sep 2 18:40:38 EDT 2003
Update of /cvs-repository/Zope3/src/zope/app/browser/userpreferences/tests
In directory cvs.zope.org:/tmp/cvs-serv26498/src/zope/app/browser/userpreferences/tests
Added Files:
Tag: user-preferences-branch
__init__.py test_userprefphony.py
Log Message:
Checking in some work (on a branch) that Staphan and I did toward
implementing user preferences. More work is needed to finish this up.
Detailed log messages need to be provided in the merge.
=== Added File Zope3/src/zope/app/browser/userpreferences/tests/__init__.py ===
=== Added File Zope3/src/zope/app/browser/userpreferences/tests/test_userprefphony.py ===
##############################################################################
#
# Copyright (c) 2003 Zope Corporation and Contributors.
# All Rights Reserved.
#
# This software is subject to the provisions of the Zope Public License,
# Version 2.0 (ZPL). A copy of the ZPL should accompany this distribution.
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
# FOR A PARTICULAR PURPOSE.
#
##############################################################################
"""Unit tests for User Preferences Forwarder
$Id: test_userprefphony.py,v 1.1.2.1 2003/09/02 21:40:37 jim Exp $
"""
import unittest
from zope.testing.doctestunit import DocTestSuite
from zope.app.browser import userpreferences
def test_suite():
return unittest.TestSuite((
DocTestSuite(userpreferences),
))
if __name__ == '__main__':
unittest.main()
More information about the Zope3-Checkins
mailing list