From 055dd829c1a7bc8e2f9add82c9d22551081e7f24 Mon Sep 17 00:00:00 2001 From: Joshua Harlow Date: Wed, 27 Aug 2014 21:42:42 -0700 Subject: [PATCH] Move parts of action engine tests to a subdirectory To match how we have a worker_based subdirectory for its specific tests lets start moving pieces of the action engine specific tests to its own directory as well and move more in the future as well. Change-Id: I003b07a95259ba18b961834515121243e27d7456 --- taskflow/tests/unit/action_engine/__init__.py | 0 .../test_compile.py} | 0 .../test_runner.py} | 0 taskflow/tests/unit/{test_action_engine.py => test_engines.py} | 0 4 files changed, 0 insertions(+), 0 deletions(-) create mode 100644 taskflow/tests/unit/action_engine/__init__.py rename taskflow/tests/unit/{test_action_engine_compile.py => action_engine/test_compile.py} (100%) rename taskflow/tests/unit/{test_action_engine_runner.py => action_engine/test_runner.py} (100%) rename taskflow/tests/unit/{test_action_engine.py => test_engines.py} (100%) diff --git a/taskflow/tests/unit/action_engine/__init__.py b/taskflow/tests/unit/action_engine/__init__.py new file mode 100644 index 00000000..e69de29b diff --git a/taskflow/tests/unit/test_action_engine_compile.py b/taskflow/tests/unit/action_engine/test_compile.py similarity index 100% rename from taskflow/tests/unit/test_action_engine_compile.py rename to taskflow/tests/unit/action_engine/test_compile.py diff --git a/taskflow/tests/unit/test_action_engine_runner.py b/taskflow/tests/unit/action_engine/test_runner.py similarity index 100% rename from taskflow/tests/unit/test_action_engine_runner.py rename to taskflow/tests/unit/action_engine/test_runner.py diff --git a/taskflow/tests/unit/test_action_engine.py b/taskflow/tests/unit/test_engines.py similarity index 100% rename from taskflow/tests/unit/test_action_engine.py rename to taskflow/tests/unit/test_engines.py