From d5e9edfdb2515972f95a3e677be0f91299090a7e Mon Sep 17 00:00:00 2001 From: Montana Date: Wed, 28 Nov 2018 15:43:52 -0500 Subject: [PATCH 1/3] Reorganize requests route tests --- tests/routes/{test_request_approval.py => requests/approval.py} | 0 .../financial_verification.py} | 0 tests/routes/{test_requests_index.py => requests/index.py} | 0 .../requests_form/details.py} | 0 .../{test_request_edit.py => requests/requests_form/edit.py} | 0 .../routes/{test_request_new.py => requests/requests_form/new.py} | 0 .../{test_request_submit.py => requests/requests_form/submit.py} | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename tests/routes/{test_request_approval.py => requests/approval.py} (100%) rename tests/routes/{test_financial_verification.py => requests/financial_verification.py} (100%) rename tests/routes/{test_requests_index.py => requests/index.py} (100%) rename tests/routes/{test_request_details.py => requests/requests_form/details.py} (100%) rename tests/routes/{test_request_edit.py => requests/requests_form/edit.py} (100%) rename tests/routes/{test_request_new.py => requests/requests_form/new.py} (100%) rename tests/routes/{test_request_submit.py => requests/requests_form/submit.py} (100%) diff --git a/tests/routes/test_request_approval.py b/tests/routes/requests/approval.py similarity index 100% rename from tests/routes/test_request_approval.py rename to tests/routes/requests/approval.py diff --git a/tests/routes/test_financial_verification.py b/tests/routes/requests/financial_verification.py similarity index 100% rename from tests/routes/test_financial_verification.py rename to tests/routes/requests/financial_verification.py diff --git a/tests/routes/test_requests_index.py b/tests/routes/requests/index.py similarity index 100% rename from tests/routes/test_requests_index.py rename to tests/routes/requests/index.py diff --git a/tests/routes/test_request_details.py b/tests/routes/requests/requests_form/details.py similarity index 100% rename from tests/routes/test_request_details.py rename to tests/routes/requests/requests_form/details.py diff --git a/tests/routes/test_request_edit.py b/tests/routes/requests/requests_form/edit.py similarity index 100% rename from tests/routes/test_request_edit.py rename to tests/routes/requests/requests_form/edit.py diff --git a/tests/routes/test_request_new.py b/tests/routes/requests/requests_form/new.py similarity index 100% rename from tests/routes/test_request_new.py rename to tests/routes/requests/requests_form/new.py diff --git a/tests/routes/test_request_submit.py b/tests/routes/requests/requests_form/submit.py similarity index 100% rename from tests/routes/test_request_submit.py rename to tests/routes/requests/requests_form/submit.py From 013548ed4c5b4c99bbecbfd999c962ecebd6b320 Mon Sep 17 00:00:00 2001 From: Montana Date: Wed, 28 Nov 2018 16:03:58 -0500 Subject: [PATCH 2/3] Fix name errors --- .../routes/requests/requests_form/{details.py => test_details.py} | 0 tests/routes/requests/requests_form/{edit.py => test_edit.py} | 0 tests/routes/requests/requests_form/{new.py => test_new.py} | 0 tests/routes/requests/requests_form/{submit.py => test_submit.py} | 0 tests/routes/requests/{approval.py => test_approval.py} | 0 .../{financial_verification.py => test_financial_verification.py} | 0 tests/routes/requests/{index.py => test_index.py} | 0 7 files changed, 0 insertions(+), 0 deletions(-) rename tests/routes/requests/requests_form/{details.py => test_details.py} (100%) rename tests/routes/requests/requests_form/{edit.py => test_edit.py} (100%) rename tests/routes/requests/requests_form/{new.py => test_new.py} (100%) rename tests/routes/requests/requests_form/{submit.py => test_submit.py} (100%) rename tests/routes/requests/{approval.py => test_approval.py} (100%) rename tests/routes/requests/{financial_verification.py => test_financial_verification.py} (100%) rename tests/routes/requests/{index.py => test_index.py} (100%) diff --git a/tests/routes/requests/requests_form/details.py b/tests/routes/requests/requests_form/test_details.py similarity index 100% rename from tests/routes/requests/requests_form/details.py rename to tests/routes/requests/requests_form/test_details.py diff --git a/tests/routes/requests/requests_form/edit.py b/tests/routes/requests/requests_form/test_edit.py similarity index 100% rename from tests/routes/requests/requests_form/edit.py rename to tests/routes/requests/requests_form/test_edit.py diff --git a/tests/routes/requests/requests_form/new.py b/tests/routes/requests/requests_form/test_new.py similarity index 100% rename from tests/routes/requests/requests_form/new.py rename to tests/routes/requests/requests_form/test_new.py diff --git a/tests/routes/requests/requests_form/submit.py b/tests/routes/requests/requests_form/test_submit.py similarity index 100% rename from tests/routes/requests/requests_form/submit.py rename to tests/routes/requests/requests_form/test_submit.py diff --git a/tests/routes/requests/approval.py b/tests/routes/requests/test_approval.py similarity index 100% rename from tests/routes/requests/approval.py rename to tests/routes/requests/test_approval.py diff --git a/tests/routes/requests/financial_verification.py b/tests/routes/requests/test_financial_verification.py similarity index 100% rename from tests/routes/requests/financial_verification.py rename to tests/routes/requests/test_financial_verification.py diff --git a/tests/routes/requests/index.py b/tests/routes/requests/test_index.py similarity index 100% rename from tests/routes/requests/index.py rename to tests/routes/requests/test_index.py From 35d99fe8faaa80a51cc594e87ab1f2b3693fd1f1 Mon Sep 17 00:00:00 2001 From: Montana Date: Wed, 28 Nov 2018 16:43:05 -0500 Subject: [PATCH 3/3] Test files must have unique names --- tests/routes/requests/{test_index.py => test_requests_index.py} | 0 .../routes/workspaces/{test_index.py => test_workspaces_index.py} | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename tests/routes/requests/{test_index.py => test_requests_index.py} (100%) rename tests/routes/workspaces/{test_index.py => test_workspaces_index.py} (100%) diff --git a/tests/routes/requests/test_index.py b/tests/routes/requests/test_requests_index.py similarity index 100% rename from tests/routes/requests/test_index.py rename to tests/routes/requests/test_requests_index.py diff --git a/tests/routes/workspaces/test_index.py b/tests/routes/workspaces/test_workspaces_index.py similarity index 100% rename from tests/routes/workspaces/test_index.py rename to tests/routes/workspaces/test_workspaces_index.py