This repository has been archived on 2023-02-21. You can view files and clone it, but cannot push or open issues or pull requests.
plone.formwidget.contenttree/plone/formwidget/contenttree/tests/test_doctests.py

19 lines
383 B
Python

# -*- coding: utf-8 -*-
from plone.formwidget.contenttree.testing import (
CONTENTTREE_INTEGRATION_TESTING,
)
from plone.testing import layered
import doctest
import unittest
def test_suite():
suite = unittest.TestSuite()
suite.addTests([
layered(doctest.DocFileSuite('../README.txt'),
CONTENTTREE_INTEGRATION_TESTING)
])
return suite