venv added, updated
This commit is contained in:
@@ -0,0 +1,45 @@
|
||||
import pytest
|
||||
from jaraco import path
|
||||
|
||||
from setuptools.glob import glob
|
||||
|
||||
|
||||
@pytest.mark.parametrize(
|
||||
'tree, pattern, matches',
|
||||
(
|
||||
('', b'', []),
|
||||
('', '', []),
|
||||
(
|
||||
"""
|
||||
appveyor.yml
|
||||
CHANGES.rst
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
pyproject.toml
|
||||
README.rst
|
||||
setup.cfg
|
||||
setup.py
|
||||
""",
|
||||
'*.rst',
|
||||
('CHANGES.rst', 'README.rst'),
|
||||
),
|
||||
(
|
||||
"""
|
||||
appveyor.yml
|
||||
CHANGES.rst
|
||||
LICENSE
|
||||
MANIFEST.in
|
||||
pyproject.toml
|
||||
README.rst
|
||||
setup.cfg
|
||||
setup.py
|
||||
""",
|
||||
b'*.rst',
|
||||
(b'CHANGES.rst', b'README.rst'),
|
||||
),
|
||||
),
|
||||
)
|
||||
def test_glob(monkeypatch, tmpdir, tree, pattern, matches):
|
||||
monkeypatch.chdir(tmpdir)
|
||||
path.build({name: '' for name in tree.split()})
|
||||
assert list(sorted(glob(pattern))) == list(sorted(matches))
|
||||
Reference in New Issue
Block a user