diff options
author | Barney Gale <barney.gale@gmail.com> | 2023-12-16 19:04:33 (GMT) |
---|---|---|
committer | GitHub <noreply@github.com> | 2023-12-16 19:04:33 (GMT) |
commit | d91e43ed7839b601cbeadd137d89e69e2cc3efda (patch) | |
tree | 281820291c08cf7f9285a09a02155cc6b5498776 /Lib/test/test_pathlib/__init__.py | |
parent | 1583c40be938d2caf363c126976bc8757df90b13 (diff) | |
download | cpython-d91e43ed7839b601cbeadd137d89e69e2cc3efda.zip cpython-d91e43ed7839b601cbeadd137d89e69e2cc3efda.tar.gz cpython-d91e43ed7839b601cbeadd137d89e69e2cc3efda.tar.bz2 |
GH-110109: Move tests for pathlib ABCs to new module. (#112904)
Diffstat (limited to 'Lib/test/test_pathlib/__init__.py')
-rw-r--r-- | Lib/test/test_pathlib/__init__.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/Lib/test/test_pathlib/__init__.py b/Lib/test/test_pathlib/__init__.py new file mode 100644 index 0000000..4b16ecc --- /dev/null +++ b/Lib/test/test_pathlib/__init__.py @@ -0,0 +1,5 @@ +import os +from test.support import load_package_tests + +def load_tests(*args): + return load_package_tests(os.path.dirname(__file__), *args) |