From: spo Date: Fri, 18 Dec 2015 13:16:03 +0000 (+0300) Subject: [PythonAPI] Remove the word shaper from some places in PythonAPI X-Git-Tag: V_2.1.0~137 X-Git-Url: http://git.salome-platform.org/gitweb/?a=commitdiff_plain;h=2005ea9313f841721fe3ff53e6412cc9e47bfc9a;p=modules%2Fshaper.git [PythonAPI] Remove the word shaper from some places in PythonAPI --- diff --git a/src/PythonAPI/CMakeLists.txt b/src/PythonAPI/CMakeLists.txt index 03df03f58..33337d6e3 100644 --- a/src/PythonAPI/CMakeLists.txt +++ b/src/PythonAPI/CMakeLists.txt @@ -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 index 000000000..e1fe33712 --- /dev/null +++ b/src/PythonAPI/Test/TestPythonAPI.py @@ -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 index 09c751bd8..000000000 --- a/src/PythonAPI/Test/TestShaper.py +++ /dev/null @@ -1,6 +0,0 @@ -import unittest -from shaper import model -from shaper import geom - -if __name__ == "__main__": - unittest.main()