File: test_docstrings.py

package info (click to toggle)
chemfp 1.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 1,580 kB
  • sloc: python: 9,390; ansic: 2,363; makefile: 110
file content (10 lines) | stat: -rw-r--r-- 209 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
import sys
import unittest2
import doctest

def load_tests(loader, tests, ignore):
    tests.addTests(doctest.DocTestSuite("chemfp.decoders"))
    return tests

if __name__ == "__main__":
    unittest2.main()