8 lines
227 B
Python
8 lines
227 B
Python
"""Test verifying `pyproject.toml` exposes `certctl` script entry."""
|
|
|
|
|
|
def test_pyproject_has_nsctl_entry():
|
|
content = open("pyproject.toml").read()
|
|
assert "certctl" in content
|
|
assert "certctl.cli:main" in content
|