Fix the test to use an os.sep agnostic test. Hopefully this will fix the

Windows buildbots.  Found by Jeremy Kloth.
This commit is contained in:
Barry Warsaw 2014-12-02 11:30:43 -05:00
parent 83cf99d733
commit eb2763dd43

View file

@ -106,9 +106,13 @@ def test_double_dot_no_clobber(self):
weird_path = os.path.join(self.directory, 'foo.bar.py')
cache_path = importlib.util.cache_from_source(weird_path)
pyc_path = weird_path + 'c'
head, tail = os.path.split(cache_path)
penultimate_tail = os.path.basename(head)
self.assertEqual(
'/'.join(cache_path.split('/')[-2:]),
'__pycache__/foo.bar.{}.pyc'.format(sys.implementation.cache_tag))
os.path.join(penultimate_tail, tail),
os.path.join(
'__pycache__',
'foo.bar.{}.pyc'.format(sys.implementation.cache_tag)))
with open(weird_path, 'w') as file:
file.write('x = 123\n')
py_compile.compile(weird_path)