Commit c15dbd9b authored by Jim Fulton's avatar Jim Fulton

Fixed a test to not fail on windows

parent 96913220
...@@ -78,7 +78,10 @@ And the generated scripts invoke Python 2.4: ...@@ -78,7 +78,10 @@ And the generated scripts invoke Python 2.4:
... else: ... else:
... script_name = 'demo' ... script_name = 'demo'
>>> f = open(os.path.join(sample_buildout, 'bin', script_name)) >>> f = open(os.path.join(sample_buildout, 'bin', script_name))
>>> f.readline().strip() == '#!' + other_executable >>> shebang = f.readline().strip()
>>> if shebang[:3] == '#!"' and shebang[-1] == '"':
... shebang = '#!'+shebang[3:-1]
>>> shebang == '#!' + other_executable
True True
>>> print f.read(), # doctest: +NORMALIZE_WHITESPACE >>> print f.read(), # doctest: +NORMALIZE_WHITESPACE
<BLANKLINE> <BLANKLINE>
...@@ -97,7 +100,11 @@ And the generated scripts invoke Python 2.4: ...@@ -97,7 +100,11 @@ And the generated scripts invoke Python 2.4:
... f = open(os.path.join(sample_buildout, 'bin', 'py-demo-script.py')) ... f = open(os.path.join(sample_buildout, 'bin', 'py-demo-script.py'))
... else: ... else:
... f = open(os.path.join(sample_buildout, 'bin', 'py-demo')) ... f = open(os.path.join(sample_buildout, 'bin', 'py-demo'))
>>> f.readline().strip() == '#!' + other_executable
>>> shebang = f.readline().strip()
>>> if shebang[:3] == '#!"' and shebang[-1] == '"':
... shebang = '#!'+shebang[3:-1]
>>> shebang == '#!' + other_executable
True True
>>> print f.read(), # doctest: +NORMALIZE_WHITESPACE >>> print f.read(), # doctest: +NORMALIZE_WHITESPACE
import sys import sys
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment