blob: c5166fc94c479311c7de6df86ffae33d24ee7f5a (
plain)
1
2
3
4
5
6
7
8
9
|
# Author: Collin Winter
import os
import unittest
from test.support import load_package_tests
def load_tests(*args):
return load_package_tests(os.path.dirname(__file__), *args)
|