Source code for UseCases.unittests_by_atoms.findRelPathInSearchPath.posix.locate_bin.python.CallCase
from __future__ import absolute_import
from __future__ import print_function
from linecache import getline
__author__ = 'Arno-Can Uestuensoez'
__license__ = "Artistic-License-2.0 + Forced-Fairplay-Constraints"
__copyright__ = "Copyright (C) 2010-2016 Arno-Can Uestuensoez @Ingenieurbuero Arno-Can Uestuensoez"
__version__ = '0.0.1'
__uuid__='af90cc0c-de54-4a32-becd-06f5ce5a3a75'
__docformat__ = "restructuredtext en"
import unittest
import os,sys
import filesysobjects.FileSysObjects
import pysourceinfo.PySourceInfo
#
#######################
#
[docs]class CallUnits(unittest.TestCase):
def __init__(self,*args,**kargs):
"""Creates search path list
"""
super(CallUnits,self).__init__(*args,**kargs)
self._s = sys.path[:]
@classmethod
[docs] def setUpClass(self):
# data
import testdata
self.myBase = testdata.mypath+os.sep+"findnodes"
#
# prefix from unchanged sys.path
self.mySysPathPrefixRaw = pysourceinfo.PySourceInfo.getPythonPathFromSysPath(__file__) #@UnusedVariable
[docs] def reset_sys_path(self):
[ sys.path.pop() for x in range(len(sys.path)) ] #@UnusedVariable
sys.path.extend(self._s)
[docs] def testCase000_locate_python(self):
px = filesysobjects.FileSysObjects.findRelPathInSearchPath('python',os.environ['PATH'])
if not px:
px = sys.executable
self.assertNotEqual(px,None)
pass
#
#######################
#
if __name__ == '__main__':
unittest.main()