From 2bbc42f532c7bc632a6b8fb2a175fa612d61764d Mon Sep 17 00:00:00 2001 From: drigato Date: Fri, 24 Jan 2014 16:08:38 -0500 Subject: [PATCH] CC-5651: Unit Test the Scheduler Moved test data outside of services --- airtime_mvc/tests/application/bootstrap.php | 2 +- .../application/{services => }/testdata/ShowServiceData.php | 0 2 files changed, 1 insertion(+), 1 deletion(-) rename airtime_mvc/tests/application/{services => }/testdata/ShowServiceData.php (100%) diff --git a/airtime_mvc/tests/application/bootstrap.php b/airtime_mvc/tests/application/bootstrap.php index 7851dda2d..778194afd 100644 --- a/airtime_mvc/tests/application/bootstrap.php +++ b/airtime_mvc/tests/application/bootstrap.php @@ -50,7 +50,7 @@ set_include_path(APPLICATION_PATH . '/models' . PATH_SEPARATOR . get_include_pat set_include_path(APPLICATION_PATH . '/controllers/plugins' . PATH_SEPARATOR . get_include_path()); //test data -set_include_path(APPLICATION_PATH . '/../tests/application/services/testdata' . PATH_SEPARATOR . get_include_path()); +set_include_path(APPLICATION_PATH . '/../tests/application/testdata' . PATH_SEPARATOR . get_include_path()); //helper functions set_include_path(APPLICATION_PATH . '/../tests/application/helpers' . PATH_SEPARATOR . get_include_path()); diff --git a/airtime_mvc/tests/application/services/testdata/ShowServiceData.php b/airtime_mvc/tests/application/testdata/ShowServiceData.php similarity index 100% rename from airtime_mvc/tests/application/services/testdata/ShowServiceData.php rename to airtime_mvc/tests/application/testdata/ShowServiceData.php