mirror of
https://github.com/samuelclay/NewsBlur.git
synced 2025-09-18 21:50:56 +00:00
29 lines
966 B
Python
29 lines
966 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")
|