~menesis/ubuntu/natty/zope.app.error/natty

« back to all changes in this revision

Viewing changes to src/zope/app/error/tests.py

  • Committer: Gediminas Paulauskas
  • Date: 2010-09-04 21:18:35 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: menesis@pov.lt-20100904211835-gt0v5yuelw9qziau
Tags: 3.5.3-0ubuntu1
* New upstream release.
* debian/watch: add

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
##############################################################################
2
2
#
3
 
# Copyright (c) 2001, 2002 Zope Corporation and Contributors.
 
3
# Copyright (c) 2001, 2002 Zope Foundation and Contributors.
4
4
# All Rights Reserved.
5
5
#
6
6
# This software is subject to the provisions of the Zope Public License,
12
12
#
13
13
##############################################################################
14
14
"""Error Reporting Utility Tests
15
 
 
16
 
$Id: tests.py 79914 2007-09-24 21:29:57Z rogerineichen $
17
15
"""
18
16
 
19
17
import unittest
20
 
 
21
 
from zope.testing import doctest
22
 
from zope.testing import doctestunit
23
 
 
 
18
import doctest
24
19
 
25
20
def test_suite():
26
21
    return unittest.TestSuite((
27
 
        doctestunit.DocFileSuite('README.txt',
 
22
        doctest.DocFileSuite('README.txt',
28
23
            optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS,
29
24
            ),
30
25
        ))