mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-08-05 16:58:59 +00:00
30 lines
986 B
Python
30 lines
986 B
Python
![]() |
##############################################################################
|
||
|
#
|
||
|
# Copyright (c) 2006 Zope Corporation and Contributors.
|
||
|
# All Rights Reserved.
|
||
|
#
|
||
|
# This software is subject to the provisions of the Zope Public License,
|
||
|
# Version 2.1 (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.
|
||
|
#
|
||
|
##############################################################################
|
||
|
|
||
|
import re
|
||
|
|
||
|
import unittest
|
||
|
import zope.testing
|
||
|
from zope.testing import doctest, renormalizing
|
||
|
|
||
|
def test_suite():
|
||
|
return unittest.TestSuite((
|
||
|
doctest.DocFileSuite('README',
|
||
|
optionflags=doctest.NORMALIZE_WHITESPACE|doctest.ELLIPSIS),
|
||
|
|
||
|
))
|
||
|
|
||
|
if __name__ == '__main__':
|
||
|
unittest.main(defaultTest='test_suite')
|