##// END OF EJS Templates
Tried to fix the windows post install script. It now creates...
Tried to fix the windows post install script. It now creates .py and .bat files for all the script. But it seems very fragile and easy to break. Don't know what to do?

File last commit:

r856:50044c43
r1611:57b6cad3
Show More
test_cd.ipy
18 lines | 289 B | text/plain | TextLexer
vivainio
update test_cd with pushd/popd
r856 # assumes there is /tmp and /opt
def curpath():
cwd = os.path.splitdrive(os.getcwd())[1].replace('\\','/')
print cwd
return cwd
vivainio
-Added a unit testing framework...
r181 import os
cd /
vivainio
update test_cd with pushd/popd
r856 assert curpath() == '/'
vivainio
-Added a unit testing framework...
r181 %cd /tmp
vivainio
update test_cd with pushd/popd
r856 assert curpath() == '/tmp'
pushd /opt
assert curpath() == '/opt'
popd
assert curpath() == '/tmp'
vivainio
-Added a unit testing framework...
r181