]> SALOME platform Git repositories - modules/shaper.git/commitdiff
Salome HOME
[PythonAPI] Remove the word shaper from some places in PythonAPI
authorspo <sergey.pokhodenko@opencascade.com>
Fri, 18 Dec 2015 13:16:03 +0000 (16:16 +0300)
committerspo <sergey.pokhodenko@opencascade.com>
Fri, 18 Dec 2015 13:25:29 +0000 (16:25 +0300)
src/PythonAPI/CMakeLists.txt
src/PythonAPI/Test/TestPythonAPI.py [new file with mode: 0644]
src/PythonAPI/Test/TestShaper.py [deleted file]

index 03df03f584cc2bfd2e3aa50486400242540f2af3..33337d6e39a45526000e90771316e19874717e6a 100644 (file)
@@ -10,7 +10,7 @@ INSTALL(FILES shaper.py DESTINATION PythonAPI)
 INCLUDE(UnitTest)
 
 ADD_UNIT_TESTS(
-  TestShaper.py
+  TestPythonAPI.py
   TestModel.py
 
   TestSketcherAddPoint.py
diff --git a/src/PythonAPI/Test/TestPythonAPI.py b/src/PythonAPI/Test/TestPythonAPI.py
new file mode 100644 (file)
index 0000000..e1fe337
--- /dev/null
@@ -0,0 +1,6 @@
+import unittest
+import model
+import geom
+
+if __name__ == "__main__":
+    unittest.main()
diff --git a/src/PythonAPI/Test/TestShaper.py b/src/PythonAPI/Test/TestShaper.py
deleted file mode 100644 (file)
index 09c751b..0000000
+++ /dev/null
@@ -1,6 +0,0 @@
-import unittest
-from shaper import model
-from shaper import geom
-
-if __name__ == "__main__":
-    unittest.main()