File: __main__.py

package info (click to toggle)
dkimpy 1.1.8-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 612 kB
  • sloc: python: 3,037; makefile: 16; sh: 5
file content (7 lines) | stat: -rw-r--r-- 139 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
import unittest
import doctest
import dkim
from tests import test_suite

doctest.testmod(dkim)
unittest.TextTestRunner().run(test_suite())