From 62747d6c184d26cc61f0f7080d6ad5d2eefcd358 Mon Sep 17 00:00:00 2001 From: Alexey Stratulat <--local> Date: Thu, 1 Aug 2019 23:50:05 +0700 Subject: [PATCH] [+] Created basic unit test --- test/test.py | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 test/test.py diff --git a/test/test.py b/test/test.py new file mode 100644 index 00000000..90bd524e --- /dev/null +++ b/test/test.py @@ -0,0 +1,6 @@ +import libdap_server_core_python_module as server + +print ("Start wrapping libdap server core python module") +res_i = server.init(1, 0) +rc = server.listen("0.0.0.0", 3307, 0) +server.deinit() -- GitLab