From 361c26e9a0d722c69e24e049a53e98da8575e1eb Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=84=8B=E1=85=A2=E1=84=91=E1=85=B3=E1=86=AF=20=E1=84=82?= =?UTF-8?q?=E1=85=A9=E1=84=90=E1=85=B3=E1=84=87=E1=85=AE=E1=86=A8?= Date: Mon, 29 Apr 2019 11:26:24 +0900 Subject: [PATCH] Add: test module for python --- src/web/python/chocomae/lib/test_module.py | 3 +++ src/web/python/chocomae/test.py | 4 ++++ 2 files changed, 7 insertions(+) create mode 100644 src/web/python/chocomae/lib/test_module.py create mode 100644 src/web/python/chocomae/test.py diff --git a/src/web/python/chocomae/lib/test_module.py b/src/web/python/chocomae/lib/test_module.py new file mode 100644 index 0000000..abb85b9 --- /dev/null +++ b/src/web/python/chocomae/lib/test_module.py @@ -0,0 +1,3 @@ +class TestModule: + def print(self): + print('test module') \ No newline at end of file diff --git a/src/web/python/chocomae/test.py b/src/web/python/chocomae/test.py new file mode 100644 index 0000000..4f8ea6b --- /dev/null +++ b/src/web/python/chocomae/test.py @@ -0,0 +1,4 @@ +from lib.test_module import TestModule + +tm = TestModule() +tm.print() \ No newline at end of file