Files
heroku-buildpack-python/vendor/pip-1.2.1/tests/test_finder.py
T
Kenneth Reitz 1abaaf6cf1 update deps
2012-12-19 22:45:05 -05:00

19 lines
563 B
Python

from pip.backwardcompat import urllib
from pip.req import InstallRequirement
from pip.index import PackageFinder
from tests.path import Path
from tests.test_pip import here
find_links = 'file://' + urllib.quote(str(Path(here).abspath/'packages').replace('\\', '/'))
def test_no_mpkg():
"""Finder skips zipfiles with "macosx10" in the name."""
finder = PackageFinder([find_links], [])
req = InstallRequirement.from_line("pkgwithmpkg")
found = finder.find_requirement(req, False)
assert found.url.endswith("pkgwithmpkg-1.0.tar.gz"), found