fix package path and move files under doctor_tests
[doctor.git] / doctor_tests / installer / __init__.py
similarity index 91%
rename from tests/installer/__init__.py
rename to doctor_tests/installer/__init__.py
index bb0e452..02735b1 100644 (file)
@@ -28,11 +28,11 @@ OPTS = [
 
 
 _installer_name_class_mapping = {
-    'local': 'installer.local.LocalInstaller',
-    'apex': 'installer.apex.ApexInstaller'
+    'local': 'doctor_tests.installer.local.LocalInstaller',
+    'apex': 'doctor_tests.installer.apex.ApexInstaller'
 }
 
 
 def get_installer(conf, log):
     installer_class = _installer_name_class_mapping[conf.installer.type]
-    return importutils.import_object(installer_class, conf, log)
\ No newline at end of file
+    return importutils.import_object(installer_class, conf, log)