summaryrefslogtreecommitdiff
path: root/openid/test/__init__.py
blob: 8de16bf77ca61e40baef9c77ba94d19938353277 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
"""Openid library tests."""
from __future__ import unicode_literals

import unittest


# Utility code to allow run unittest under coverage called as module.
def _run_unittest():
    unittest.main()


if __name__ == '__main__':
    _run_unittest()