test_ok2/testing/test_entry_points.py

15 lines
484 B
Python
Raw Normal View History

from __future__ import absolute_import, division, print_function
import pkg_resources
import pytest
2018-05-23 22:48:46 +08:00
@pytest.mark.parametrize("entrypoint", ["py.test", "pytest"])
def test_entry_point_exist(entrypoint):
2018-05-23 22:48:46 +08:00
assert entrypoint in pkg_resources.get_entry_map("pytest")["console_scripts"]
def test_pytest_entry_points_are_identical():
2018-05-23 22:48:46 +08:00
entryMap = pkg_resources.get_entry_map("pytest")["console_scripts"]
assert entryMap["pytest"].module_name == entryMap["py.test"].module_name