~sidnei/zope3/ztk-1.0a1

« back to all changes in this revision

Viewing changes to src/zope/app/publisher/browser/tests/test_fields.py

  • Committer: Sidnei da Silva
  • Date: 2010-03-03 03:29:50 UTC
  • mfrom: (12.1.16 trunk)
  • Revision ID: sidnei.da.silva@canonical.com-20100303032950-duivfaoqsxaf9dgg
Merged newer-from-ztk [r=jkakar,bigkevmcd,free][qa=andreas][f=522474].

Update our monolithic Zope 3 tree to a kgs-based, generated,
monolithic Zope 3 tree built from eggs using the
collective.buildout.omelette recipe.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
##############################################################################
2
 
#
3
 
# Copyright (c) 2004 Zope Corporation and Contributors.
4
 
# All Rights Reserved.
5
 
#
6
 
# This software is subject to the provisions of the Zope Public License,
7
 
# Version 2.1 (ZPL).  A copy of the ZPL should accompany this distribution.
8
 
# THIS SOFTWARE IS PROVIDED "AS IS" AND ANY AND ALL EXPRESS OR IMPLIED
9
 
# WARRANTIES ARE DISCLAIMED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
10
 
# WARRANTIES OF TITLE, MERCHANTABILITY, AGAINST INFRINGEMENT, AND FITNESS
11
 
# FOR A PARTICULAR PURPOSE.
12
 
#
13
 
##############################################################################
14
 
"""Test fields.
15
 
 
16
 
$Id: test_fields.py 29570 2005-03-18 22:53:37Z rogerineichen $
17
 
"""
18
 
import unittest
19
 
from zope.testing.doctestunit import DocTestSuite
20
 
from zope.app.testing import placelesssetup
21
 
 
22
 
def test_suite():
23
 
    return unittest.TestSuite((
24
 
        DocTestSuite('zope.app.publisher.browser.fields',
25
 
                     setUp=placelesssetup.setUp,
26
 
                     tearDown=placelesssetup.tearDown),
27
 
        ))
28
 
 
29
 
if __name__ == '__main__':
30
 
    unittest.main(defaultTest='test_suite')