From dbe158a3a4278371d49340f24d3326fe567ad1ba Mon Sep 17 00:00:00 2001 From: Volker Birk Date: Wed, 6 Feb 2019 14:47:20 +0100 Subject: [PATCH] ... --- test/sync_test.py | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 test/sync_test.py diff --git a/test/sync_test.py b/test/sync_test.py new file mode 100644 index 0000000..0a37f25 --- /dev/null +++ b/test/sync_test.py @@ -0,0 +1,20 @@ +# vim: set fileencoding=utf-8 : + +# Sync test 2.0 +# Copyleft 2018, Volker Birk + +# this file is under GNU General Public License 3.0 + + +import os + + +def setup(path): + cwd = os.getcwd(); + + os.makedirs(path, exist_ok=True) + os.chdir(path) + lib_path = os.path.join(os.environ["HOME"], "lib") + Library_path = os.path.join(os.environ["HOME"], "Library") + + os.chdir(cwd)