From 00904ef7acd7bdab52a931d78bda3353e73b900d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E5=AE=AE=E5=9C=B0=E5=AE=8F=E6=A8=B9?= Date: Tue, 11 May 2021 20:51:59 +0900 Subject: [PATCH] Version up --- pyproject.toml | 2 +- tests/main.py | 2 ++ 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/pyproject.toml b/pyproject.toml index e45bab1..71666e0 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -1,6 +1,6 @@ [tool.poetry] name = "autoload-module" -version = "1.2.0" +version = "1.3.0" description = "Python Autoload Module" authors = ["Hiroki Miyaji "] license = "MIT" diff --git a/tests/main.py b/tests/main.py index 890fa8f..4444d4f 100644 --- a/tests/main.py +++ b/tests/main.py @@ -13,9 +13,11 @@ def main(): print(loader.load_class(".tests.clazz.base.module_1")) print(loader.load_classes("tests.clazz.packageA")) print(loader.load_classes("tests.clazz.packageA", recursive=True)) + print(loader.load_classes("tests.clazz.base.packageD")) print(loader.load_function("./tests/func/base/func1.py")) print(loader.load_functions("tests/func/packageA")) print(loader.load_functions("tests/func/packageA", recursive=True)) + print(loader.load_functions("tests/func/base/packageD")) print("--- end test -------------------------")