Commit 292d4db0 authored by Jason R. Coombs's avatar Jason R. Coombs

Rewrite test to remove Windows-specific handling and instead capture the underlying expectation.

parent 10197f6d
...@@ -114,10 +114,9 @@ class TestPTHFileWriter(unittest.TestCase): ...@@ -114,10 +114,9 @@ class TestPTHFileWriter(unittest.TestCase):
self.assertTrue(pth.dirty) self.assertTrue(pth.dirty)
def test_add_from_site_is_ignored(self): def test_add_from_site_is_ignored(self):
if os.name != 'nt': location = '/test/location/does-not-have-to-exist'
location = '/test/location/does-not-have-to-exist' # PthDistributions expects all locations to be normalized
else: location = pkg_resources.normalize_path(location)
location = 'c:\\does_not_exist'
pth = PthDistributions('does-not_exist', [location, ]) pth = PthDistributions('does-not_exist', [location, ])
self.assertTrue(not pth.dirty) self.assertTrue(not pth.dirty)
pth.add(PRDistribution(location)) pth.add(PRDistribution(location))
......
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