From 98d5487e4c466acc1aab6e95b22e49a7333d7e54 Mon Sep 17 00:00:00 2001 From: Flaper Fesp Date: Fri, 6 Sep 2013 15:00:47 +0200 Subject: [PATCH] Move functional tests into wsgi/v1 As per previous discussions and decisions, functional tests should respect a $transport/$version structure. This patch moves existing tests under wsgi/v1. Implements blueprint: refactor-system-tests Change-Id: I2ffae134fdc42af92c6791ce6cf3600e61096683 --- tests/functional/README.rst | 2 +- tests/functional/wsgi/__init__.py | 0 tests/functional/wsgi/v1/__init__.py | 0 tests/functional/{ => wsgi/v1}/test_claims.py | 0 tests/functional/{ => wsgi/v1}/test_messages.py | 0 tests/functional/{test_queue.py => wsgi/v1/test_queues.py} | 0 6 files changed, 1 insertion(+), 1 deletion(-) create mode 100644 tests/functional/wsgi/__init__.py create mode 100644 tests/functional/wsgi/v1/__init__.py rename tests/functional/{ => wsgi/v1}/test_claims.py (100%) rename tests/functional/{ => wsgi/v1}/test_messages.py (100%) rename tests/functional/{test_queue.py => wsgi/v1/test_queues.py} (100%) diff --git a/tests/functional/README.rst b/tests/functional/README.rst index e73fa0e24..63ed9ef4f 100644 --- a/tests/functional/README.rst +++ b/tests/functional/README.rst @@ -21,7 +21,7 @@ Running functional tests (With Tox) #. Filter tests. :: - $ tox -- --tests tests.functional.test_messages + $ tox -- --tests tests.functional.wsgi.v1.test_messages #. Run tests for specific environments. :: diff --git a/tests/functional/wsgi/__init__.py b/tests/functional/wsgi/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/functional/wsgi/v1/__init__.py b/tests/functional/wsgi/v1/__init__.py new file mode 100644 index 000000000..e69de29bb diff --git a/tests/functional/test_claims.py b/tests/functional/wsgi/v1/test_claims.py similarity index 100% rename from tests/functional/test_claims.py rename to tests/functional/wsgi/v1/test_claims.py diff --git a/tests/functional/test_messages.py b/tests/functional/wsgi/v1/test_messages.py similarity index 100% rename from tests/functional/test_messages.py rename to tests/functional/wsgi/v1/test_messages.py diff --git a/tests/functional/test_queue.py b/tests/functional/wsgi/v1/test_queues.py similarity index 100% rename from tests/functional/test_queue.py rename to tests/functional/wsgi/v1/test_queues.py