NewsBlur/vendor/opml/tests.py
2024-04-24 09:50:42 -04:00

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")