diff options
author | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 16:45:16 -0500 |
---|---|---|
committer | Jason R. Coombs <jaraco@jaraco.com> | 2015-01-02 16:45:16 -0500 |
commit | ef428d7278002b558541300fb7b7a96c8dbac830 (patch) | |
tree | f774b13c900952fb69c4d4572f1a56fd013f4c08 /tests/test_pkg_resources.py | |
parent | 1f953c4c2f954cc04df15a008cbd32e7bb1dfe04 (diff) | |
download | external_python_setuptools-ef428d7278002b558541300fb7b7a96c8dbac830.tar.gz external_python_setuptools-ef428d7278002b558541300fb7b7a96c8dbac830.tar.bz2 external_python_setuptools-ef428d7278002b558541300fb7b7a96c8dbac830.zip |
Move tests to be adjacent with other parsing tests.
Diffstat (limited to 'tests/test_pkg_resources.py')
-rw-r--r-- | tests/test_pkg_resources.py | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/tests/test_pkg_resources.py b/tests/test_pkg_resources.py index 4dfd14b3..564d7cec 100644 --- a/tests/test_pkg_resources.py +++ b/tests/test_pkg_resources.py @@ -109,11 +109,3 @@ class TestIndependence: ) cmd = [sys.executable, '-c', '; '.join(lines)] subprocess.check_call(cmd) - - -class TestEntryPoint: - """Tests that ensure EntryPoint behaviour doesn't regress.""" - def test_accepts_old_entry_points(self): - """https://bitbucket.org/pypa/setuptools/issue/323/install-issues-with-102""" - entry_point_string = 'html+mako = mako.ext.pygmentplugin:MakoHtmlLexer' - pkg_resources.EntryPoint.parse(entry_point_string) |