Sophie

Sophie

distrib > Mageia > 6 > x86_64 > media > core-release > by-pkgid > 7100f2b58690d0bf43c8eb8cfe1232ce > files > 1255

python-sqlobject-2.1.2-2.mga6.noarch.rpm

import sys, os
import doctest

sys.path.insert(
    0, os.path.dirname(os.path.dirname(os.path.abspath(__file__))))

def test():
    for doc in ['SQLObject.txt']:
        doctest.testfile(doc, optionflags=doctest.ELLIPSIS)

if __name__ == '__main__':
    test()