Salome HOME
Update copyrights 2014.
[modules/kernel.git] / src / KERNEL_PY / kernel / services.py
index cddfa1f5f6803cbcb664434515531e4224c3f1bd..37b38964f2a4a72fceba69a1ee79d6861de030ae 100644 (file)
@@ -1,10 +1,10 @@
 # -*- coding: iso-8859-1 -*-
-# Copyright (C) 2007-2013  CEA/DEN, EDF R&D, OPEN CASCADE
+# Copyright (C) 2007-2014  CEA/DEN, EDF R&D, OPEN CASCADE
 #
 # This library is free software; you can redistribute it and/or
 # modify it under the terms of the GNU Lesser General Public
 # License as published by the Free Software Foundation; either
-# version 2.1 of the License.
+# version 2.1 of the License, or (at your option) any later version.
 #
 # This library is distributed in the hope that it will be useful,
 # but WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -222,10 +222,12 @@ def TEST_getComponentList():
 
 def TEST_createObject():
     """
-    WARNING: for this test, we need GEOM (used to create an object 
+    WARNING: for this test, we need GEOM (used to create an object) 
     """
-    import geompy
-    geompy.init_geom(salome.myStudy)
+    import GEOM
+    from salome.geom import geomBuilder
+    geompy = geomBuilder.New(salome.myStudy)
+
     box = geompy.MakeBoxDXDYDZ(200, 200, 200)
     id = geompy.addToStudy( box, 'box' )
     return id