def test_docs(): from peak.util import doctest return doctest.DocFileSuite( 'rules.txt', optionflags=doctest.ELLIPSIS, package='peak.security', )
def test_unittrace(): from peak.util import doctest return doctest.DocFileSuite( 'unittrace.txt', optionflags=doctest.ELLIPSIS, package='peak.util.unittrace', )
def test_Graph(): from peak.util import doctest return doctest.DocFileSuite( 'Graph.txt', optionflags=doctest.ELLIPSIS, package='peak.util.Graph', )
def test_options(): from peak.util import doctest return doctest.DocFileSuite( 'options.txt', optionflags=doctest.ELLIPSIS, package='peak.running', )
def test_components(): from peak.util import doctest return doctest.DocFileSuite( 'components.txt', optionflags=doctest.ELLIPSIS, package='peak.binding', )