Example #1
0
def test_suite():
    test = FunctionalBlobDocFileSuite(
        "testbrowser.txt",
        optionflags=doctest.ELLIPSIS|doctest.NORMALIZE_WHITESPACE)
    test.layer = resourceLayer

    return unittest.TestSuite((test,))
Example #2
0
def test_suite():
    tests = FunctionalBlobDocFileSuite(
        "testbrowser.txt",
        setUp=setUp,
        optionflags=doctest.ELLIPSIS|doctest.NORMALIZE_WHITESPACE)
    tests.layer = zojaxAttachLayer

    return unittest.TestSuite((tests,))