diff options
author | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-01-21 20:22:58 -0500 |
---|---|---|
committer | Siddharth Ravikumar <sravik@bgsu.edu> | 2015-01-21 20:22:58 -0500 |
commit | 6bcd4aed98ca44bcbdc64ff01f1b25e0a905bc4b (patch) | |
tree | cdbc8facea88c87718d4944dedb7c6957e3f27f0 /tests/events_test.py | |
parent | 5e3c14217731f85db432fa679998c9a633668bdd (diff) |
tests/events_test.py: re-arranged the import statements.
Diffstat (limited to 'tests/events_test.py')
-rw-r--r-- | tests/events_test.py | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/tests/events_test.py b/tests/events_test.py index 26a846d..3eadc87 100644 --- a/tests/events_test.py +++ b/tests/events_test.py @@ -17,22 +17,24 @@ # <http://www.gnu.org/licenses/>. import os +import time import yaml from filecmp import cmp from glob import glob -import time -from nose.tools import * from os import path, remove from shutil import copyfile + +from nose.tools import * from watchdog.observers import Observer -from combox.events import ComboxDirMonitor from combox.config import get_nodedirs from combox.crypto import decrypt_and_glue +from combox.events import ComboxDirMonitor from combox.file import (relative_path, purge_dir, read_file, write_file) + CONFIG_DIR = path.join('tests', 'test-config') config_file = path.join(CONFIG_DIR, 'config.yaml') |