forked from mirrors/gecko-dev
MozReview-Commit-ID: 5qfK6OygVMH --HG-- rename : third_party/python/pytest/_pytest/vendored_packages/pluggy-0.4.0.dist-info/LICENSE.txt => third_party/python/pluggy/LICENSE rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_a/__init__.py rename : third_party/python/pytest/doc/en/example/costlysetup/sub1/__init__.py => third_party/python/pytest/doc/en/example/costlysetup/sub_b/__init__.py rename : third_party/python/pytest/_pytest/_code/__init__.py => third_party/python/pytest/src/_pytest/_code/__init__.py extra : rebase_source : d80873f2b1899decefbddddfc2f69ae045925b81
14 lines
484 B
Python
14 lines
484 B
Python
from __future__ import absolute_import, division, print_function
|
|
import pkg_resources
|
|
|
|
import pytest
|
|
|
|
|
|
@pytest.mark.parametrize("entrypoint", ["py.test", "pytest"])
|
|
def test_entry_point_exist(entrypoint):
|
|
assert entrypoint in pkg_resources.get_entry_map("pytest")["console_scripts"]
|
|
|
|
|
|
def test_pytest_entry_points_are_identical():
|
|
entryMap = pkg_resources.get_entry_map("pytest")["console_scripts"]
|
|
assert entryMap["pytest"].module_name == entryMap["py.test"].module_name
|