Update of /cvsroot/jython/bugtests
In directory usw-pr-cvs1:/tmp/cvs-serv6553
Added Files:
test306.py
Log Message:
A windows test for a bug discovered by Ype Kingma.
--- NEW FILE: test306.py ---
"""
Test normcase.
"""
import support
import os
if os.sep == '\\': #only do this test on windows.
p1 = os.path.normpath('e:\\someDir\\packag/modul.py')
if p1 != 'e:\\someDir\\packag\\modul.py':
raise support.TestError('Wrong normpath %s' % p1)
|