aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'tests/testsuite/__init__.py')
-rw-r--r--tests/testsuite/__init__.py13
1 files changed, 13 insertions, 0 deletions
diff --git a/tests/testsuite/__init__.py b/tests/testsuite/__init__.py
new file mode 100644
index 0000000..d738781
--- /dev/null
+++ b/tests/testsuite/__init__.py
@@ -0,0 +1,13 @@
+__all__ = [ 'VM', 'Virtual', 'Package', 'VersionManager', 'EnvironmentManager' ]
+from . import VM
+from . import Virtual
+from . import Package
+from . import VersionManager
+from . import EnvironmentManager
+from java_config_2.EnvironmentManager import EnvironmentManager as em
+em.vms_path = VM.TestVM.path
+em.pkg_path = Package.TestPackage.path
+em.virtual_path = Virtual.TestVirtual.path
+em.set_active_vm(em.find_vm('ibm-jdk-bin-1.5'))
+
+# vim:set expandtab tabstop=4 shiftwidth=4 softtabstop=4 nowrap: